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