lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.13 kB
JSX
import Icon from '../Icon';
const iconNode = [
['polygon', { points: '11 19 2 12 11 5 11 19', key: '14yba5' }],
['polygon', { points: '22 19 13 12 22 5 22 19', key: '1pi1cj' }],
];
/**
* @component @name Rewind
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/rewind
* @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 Rewind = (props) => <Icon {...props} name="Rewind" iconNode={iconNode}/>;
export default Rewind;