lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.18 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M4 10c0-4.4 3.6-8 8-8s8 3.6 8 8-3.6 8-8 8H4', key: 'tuf4su' }],
['polyline', { points: '8 22 4 18 8 14', key: 'evkj9s' }],
];
/**
* @component @name IterationCw
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/iteration-cw
* @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 IterationCw = (props) => (<Icon {...props} name="IterationCw" iconNode={iconNode}/>);
export default IterationCw;