tiny-vue/examples/react-site/tiny-uno/rules/keyframes/line.js

11 lines
113 B
JavaScript

export function line(prop, from, to) {
return `
from {
${prop}: ${from};
}
to {
${prop}: ${to};
}
`;
}