12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
|
module.exports = ({ matchUtilities, theme }) =>
|
||
|
matchUtilities(
|
||
|
{
|
||
|
'animate-delay': (value) => ({
|
||
|
'animation-delay': value
|
||
|
})
|
||
|
},
|
||
|
{
|
||
|
values: theme('animationDelay')
|
||
|
}
|
||
|
);
|