lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.32 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' }],
['path', { d: 'M12 8v8', key: 'napkw2' }],
['path', { d: 'm8.5 14 7-4', key: '12hpby' }],
['path', { d: 'm8.5 10 7 4', key: 'wwy2dy' }],
];
/**
* @component @name AsteriskSquare
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/asterisk-square
* @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 AsteriskSquare = (props) => (<Icon {...props} name="AsteriskSquare" iconNode={iconNode}/>);
export default AsteriskSquare;