mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
module.exports = ({ matchUtilities, theme }) =>
|
|
matchUtilities(
|
|
{
|
|
'animate-delay': (value) => ({
|
|
'animation-delay': value
|
|
})
|
|
},
|
|
{
|
|
values: theme('animationDelay')
|
|
}
|
|
);
|