tiny-vue_version0/examples/sites/tiny-uno/rules/keyframes/line.js

11 lines
112 B
JavaScript

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