lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.21 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M22 17a10 10 0 0 0-20 0', key: 'ozegv' }],
['path', { d: 'M6 17a6 6 0 0 1 12 0', key: '5giftw' }],
['path', { d: 'M10 17a2 2 0 0 1 4 0', key: 'gnsikk' }],
];
/**
* @component @name Rainbow
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/rainbow
* @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 Rainbow = (props) => <Icon {...props} name="Rainbow" iconNode={iconNode}/>;
export default Rainbow;