lucide-solid
Version:
A Lucide icon library package for Solid applications
38 lines (37 loc) • 1.93 kB
JSX
import Icon from '../Icon';
const iconNode = [
[
'path',
{
d: 'm12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z',
key: '8b97xw',
},
],
[
'path',
{
d: 'm6.08 9.5-3.5 1.6a1 1 0 0 0 0 1.81l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9a1 1 0 0 0 0-1.83l-3.5-1.59',
key: '1e5n1m',
},
],
[
'path',
{
d: 'm6.08 14.5-3.5 1.6a1 1 0 0 0 0 1.81l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9a1 1 0 0 0 0-1.83l-3.5-1.59',
key: '1iwflc',
},
],
];
/**
* @component @name Layers3
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/layers-3
* @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 Layers3 = (props) => <Icon {...props} name="Layers3" iconNode={iconNode}/>;
export default Layers3;