lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.32 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '9', height: '6', x: '6', y: '14', rx: '2', key: 'lpm2y7' }],
['rect', { width: '16', height: '6', x: '6', y: '4', rx: '2', key: 'rdj6ps' }],
['path', { d: 'M2 2v20', key: '1ivd8o' }],
];
/**
* @component @name AlignStartVertical
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/align-start-vertical
* @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 AlignStartVertical = (props) => (<Icon {...props} name="AlignStartVertical" iconNode={iconNode}/>);
export default AlignStartVertical;