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