lucide-solid
Version:
A Lucide icon library package for Solid applications
32 lines (31 loc) • 1.88 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M10 4.5V4a2 2 0 0 0-2.41-1.957', key: 'jsi14n' }],
['path', { d: 'M13.9 8.4a2 2 0 0 0-1.26-1.295', key: 'hirc7f' }],
[
'path',
{ d: 'M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158', key: '1jxb2e' },
],
[
'path',
{
d: 'm7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343',
key: '10r7hm',
},
],
['path', { d: 'M6 6v8', key: 'tv5xkp' }],
['path', { d: 'm2 2 20 20', key: '1ooewy' }],
];
/**
* @component @name PointerOff
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/pointer-off
* @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 PointerOff = (props) => (<Icon {...props} name="PointerOff" iconNode={iconNode}/>);
export default PointerOff;