mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 14:17:42 +01:00
* init vue next package * Refactor naming * adjust readme * add typescript support * Fix es module build * Bump alpha version * Fix size property not working * Fix issue with default attributes in this PR * small fixes * Update README.md * Fix peer dep * Add return * update release workflow Co-authored-by: AdamSGit <adamelio@protonmail.com>
8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
export default ({ componentName, children }) => `
|
|
import createVueComponent from '../createVueComponent';
|
|
|
|
const ${componentName} = createVueComponent('${componentName}Icon', ${JSON.stringify(children)});
|
|
|
|
export default ${componentName};
|
|
`;
|