lucide-solid
Version:
A Lucide icon library package for Solid applications
26 lines (25 loc) • 1.47 kB
JSX
import Icon from '../Icon';
const iconNode = [
[
'polygon',
{
points: '7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2',
key: 'h1p8hx',
},
],
['line', { x1: '12', x2: '12', y1: '8', y2: '12', key: '1pkeuh' }],
['line', { x1: '12', x2: '12.01', y1: '16', y2: '16', key: '4dfq90' }],
];
/**
* @component @name AlertOctagon
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/alert-octagon
* @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 AlertOctagon = (props) => (<Icon {...props} name="AlertOctagon" iconNode={iconNode}/>);
export default AlertOctagon;