lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.18 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '8', height: '6', x: '5', y: '4', rx: '1', key: 'nzclkv' }],
['rect', { width: '8', height: '6', x: '11', y: '14', rx: '1', key: '4tytwb' }],
];
/**
* @component @name Ungroup
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/ungroup
* @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 Ungroup = (props) => <Icon {...props} name="Ungroup" iconNode={iconNode}/>;
export default Ungroup;