lucide-solid
Version:
A Lucide icon library package for Solid applications
25 lines (24 loc) • 1.33 kB
JSX
import Icon from '../Icon';
const iconNode = [
[
'path',
{
d: 'M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z',
key: 'aenxs0',
},
],
['path', { d: 'M12 2v20', key: 't6zp3m' }],
];
/**
* @component @name Pyramid
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/pyramid
* @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 Pyramid = (props) => <Icon {...props} name="Pyramid" iconNode={iconNode}/>;
export default Pyramid;