lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.29 kB
JSX
import Icon from '../Icon';
const iconNode = [
['line', { x1: '3', x2: '21', y1: '6', y2: '6', key: '4m8b97' }],
['line', { x1: '3', x2: '21', y1: '12', y2: '12', key: '10d38w' }],
['line', { x1: '3', x2: '21', y1: '18', y2: '18', key: 'kwyyxn' }],
];
/**
* @component @name AlignJustify
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/align-justify
* @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 AlignJustify = (props) => (<Icon {...props} name="AlignJustify" iconNode={iconNode}/>);
export default AlignJustify;