lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.27 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M16 4H9a3 3 0 0 0-2.83 4', key: '43sutm' }],
['path', { d: 'M14 12a4 4 0 0 1 0 8H6', key: 'nlfj13' }],
['line', { x1: '4', x2: '20', y1: '12', y2: '12', key: '1e0a9i' }],
];
/**
* @component @name Strikethrough
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/strikethrough
* @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 Strikethrough = (props) => (<Icon {...props} name="Strikethrough" iconNode={iconNode}/>);
export default Strikethrough;