lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.24 kB
JSX
import Icon from '../Icon';
const iconNode = [
['polyline', { points: '4 7 4 4 20 4 20 7', key: '1nosan' }],
['line', { x1: '9', x2: '15', y1: '20', y2: '20', key: 'swin9y' }],
['line', { x1: '12', x2: '12', y1: '4', y2: '20', key: '1tx1rr' }],
];
/**
* @component @name Type
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/type
* @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 Type = (props) => <Icon {...props} name="Type" iconNode={iconNode}/>;
export default Type;