/* const { addAnimation } = require('../rules');
module.exports = (root, opts) => {
addAnimation(
{
name: 'animate-width',
from: { width: '0' },
to: { width: '100%' },
duration: '1000ms',
timing: 'linear'
},
root,
opts
);
};
*/