mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
module.exports = ({ matchUtilities, theme }) =>
|
|
matchUtilities(
|
|
{
|
|
'animate-duration': (value) => ({
|
|
'animation-duration': value
|
|
})
|
|
},
|
|
{
|
|
values: theme('animationDuration')
|
|
}
|
|
);
|