23 lines
567 B
JavaScript
23 lines
567 B
JavaScript
import { token } from '../..';
|
|
|
|
export default {
|
|
animationDelay: token.prop('animationDelay')
|
|
};
|
|
|
|
/* 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);
|
|
};
|
|
*/
|