lucide-solid
Version:
A Lucide icon library package for Solid applications
33 lines (32 loc) • 1.66 kB
JSX
import Icon from '../Icon';
const iconNode = [
[
'path',
{
d: 'M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4',
key: '10td1f',
},
],
['path', { d: 'M10 22 9 8', key: 'yjptiv' }],
['path', { d: 'm14 22 1-14', key: '8jwc8b' }],
[
'path',
{
d: 'M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z',
key: '1qo33t',
},
],
];
/**
* @component @name Popcorn
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/popcorn
* @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 Popcorn = (props) => <Icon {...props} name="Popcorn" iconNode={iconNode}/>;
export default Popcorn;