-
-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb2022c
commit 4db0fff
Showing
8 changed files
with
123 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
export default ({ componentName, children }) => ` | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs'; | ||
|
||
export default ({ componentName, iconName, children, getSvg, deprecated }) => { | ||
const svgContents = getSvg(); | ||
const svgBase64 = base64SVG(svgContents); | ||
|
||
return ` | ||
import createLucideIcon from '../createLucideIcon'; | ||
/** | ||
* @component @name ${componentName} | ||
* @description Lucide SVG icon component, renders SVG Element with children. | ||
* | ||
* @preview ![img](data:image/svg+xml;base64,${svgBase64}) - https://lucide.dev/icons/${iconName} | ||
* @see https://lucide.dev/guide/packages/lucide-preact - Documentation | ||
* | ||
* @param {Object} props - Lucide icons props and any valid SVG attribute | ||
* @returns {JSX.Element} JSX Element | ||
* ${deprecated ? '@deprecated' : ''} | ||
*/ | ||
const ${componentName} = createLucideIcon('${componentName}', ${JSON.stringify(children)}); | ||
export default ${componentName}; | ||
`; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
export default ({ componentName, children }) => ` | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs'; | ||
|
||
export default ({ componentName, iconName, children, getSvg, deprecated }) => { | ||
const svgContents = getSvg(); | ||
const svgBase64 = base64SVG(svgContents); | ||
|
||
return ` | ||
import createLucideIcon from '../createLucideIcon'; | ||
/** | ||
* @component @name ${componentName} | ||
* @description Lucide SVG icon component, renders SVG Element with children. | ||
* | ||
* @preview ![img](data:image/svg+xml;base64,${svgBase64}) - https://lucide.dev/icons/${iconName} | ||
* @see https://lucide.dev/guide/packages/lucide-react-native - Documentation | ||
* | ||
* @param {Object} props - Lucide icons props and any valid SVG attribute | ||
* @returns {JSX.Element} JSX Element | ||
* ${deprecated ? '@deprecated' : ''} | ||
*/ | ||
const ${componentName} = createLucideIcon('${componentName}', ${JSON.stringify(children)}); | ||
export default ${componentName}; | ||
`; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,31 @@ | ||
export default ({ componentName, children }) => ` | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs'; | ||
|
||
export default ({ componentName, iconName, children, getSvg, deprecated }) => { | ||
const svgContents = getSvg(); | ||
const svgBase64 = base64SVG(svgContents); | ||
|
||
return ` | ||
import Icon from '../Icon'; | ||
import type { IconNode, LucideProps } from '../types'; | ||
const iconNode: IconNode = ${JSON.stringify(children)}; | ||
/** | ||
* @component @name ${componentName} | ||
* @description Lucide SVG icon component, renders SVG Element with children. | ||
* | ||
* @preview ![img](data:image/svg+xml;base64,${svgBase64}) - https://lucide.dev/icons/${iconName} | ||
* @see https://lucide.dev/guide/packages/lucide-solid - Documentation | ||
* | ||
* @param {Object} props - Lucide icons props and any valid SVG attribute | ||
* @returns {JSX.Element} JSX Element | ||
* ${deprecated ? '@deprecated' : ''} | ||
*/ | ||
const ${componentName} = (props: LucideProps) => ( | ||
<Icon {...props} name="${componentName}" iconNode={iconNode} /> | ||
) | ||
export default ${componentName}; | ||
`; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
export default ({ componentName, children }) => ` | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs'; | ||
|
||
export default ({ componentName, iconName, children, getSvg, deprecated }) => { | ||
const svgContents = getSvg(); | ||
const svgBase64 = base64SVG(svgContents); | ||
|
||
return ` | ||
import createLucideIcon from '../createLucideIcon'; | ||
/** | ||
* @component @name ${componentName} | ||
* @description Lucide SVG icon component, renders SVG Element with children. | ||
* | ||
* @preview ![img](data:image/svg+xml;base64,${svgBase64}) - https://lucide.dev/icons/${iconName} | ||
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation | ||
* | ||
* @param {Object} props - Lucide icons props and any valid SVG attribute | ||
* @returns {FunctionalComponent} Vue component | ||
* ${deprecated ? '@deprecated' : ''} | ||
*/ | ||
const ${componentName} = createLucideIcon('${componentName}Icon', ${JSON.stringify(children)}); | ||
export default ${componentName}; | ||
`; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
export default ({ componentName, children }) => ` | ||
import createVueComponent from '../createVueComponent'; | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs'; | ||
|
||
export default ({ componentName, iconName, children, getSvg, deprecated }) => { | ||
const svgContents = getSvg(); | ||
const svgBase64 = base64SVG(svgContents); | ||
|
||
return ` | ||
import createLucideIcon from '../createLucideIcon'; | ||
/** | ||
* @component @name ${componentName} | ||
* @description Lucide SVG icon component, renders SVG Element with children. | ||
* | ||
* @preview ![img](data:image/svg+xml;base64,${svgBase64}) - https://lucide.dev/icons/${iconName} | ||
* @see https://lucide.dev/guide/packages/lucide-vue - Documentation | ||
* | ||
* @param {Object} props - Lucide icons props and any valid SVG attribute | ||
* @returns {Component} Vue Component | ||
* ${deprecated ? '@deprecated' : ''} | ||
*/ | ||
const ${componentName} = createVueComponent('${componentName}Icon', ${JSON.stringify(children)}); | ||
export default ${componentName}; | ||
`; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// eslint-disable-next-line import/prefer-default-export | ||
export { default as getAliases } from './utils/getAliases.mjs'; | ||
export { default as getIconMetaData } from './utils/getIconMetaData.mjs'; |