primevue-mirror/components/lib/props/style/animation/properties/delay.js

23 lines
567 B
JavaScript
Raw Normal View History

2024-02-17 23:42:39 +00:00
import { token } from '../..';
export default {
animationDelay: token.prop('animationDelay')
};
2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../../utils');
module.exports = (root, opts) => {
const delay = {
'animation-delay-100': '100ms',
'animation-delay-150': '150ms',
'animation-delay-200': '200ms',
'animation-delay-300': '300ms',
'animation-delay-400': '400ms',
'animation-delay-500': '500ms',
'animation-delay-1000': '1000ms'
};
styleClass('animation-delay', delay, root, opts, true);
};
*/