lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.11 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm9 7-5 5 5 5', key: 'j5w590' }],
['path', { d: 'm15 7 5 5-5 5', key: '1bl6da' }],
];
/**
* @component @name ChevronsLeftRight
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/chevrons-left-right
* @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 ChevronsLeftRight = (props) => (<Icon {...props} name="ChevronsLeftRight" iconNode={iconNode}/>);
export default ChevronsLeftRight;