lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.26 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm7 11 2-2-2-2', key: '1lz0vl' }],
['path', { d: 'M11 13h4', key: '1p7l4v' }],
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', ry: '2', key: '1m3agn' }],
];
/**
* @component @name TerminalSquare
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/terminal-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 TerminalSquare = (props) => (<Icon {...props} name="TerminalSquare" iconNode={iconNode}/>);
export default TerminalSquare;