lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.26 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '20', height: '12', x: '2', y: '6', rx: '2', key: '9lu3g6' }],
['circle', { cx: '12', cy: '12', r: '2', key: '1c9p78' }],
['path', { d: 'M6 12h.01M18 12h.01', key: '113zkx' }],
];
/**
* @component @name Banknote
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/banknote
* @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
*
*/
const Banknote = (props) => <Icon {...props} name="Banknote" iconNode={iconNode}/>;
export default Banknote;