lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.18 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M4 11a9 9 0 0 1 9 9', key: 'pv89mb' }],
['path', { d: 'M4 4a16 16 0 0 1 16 16', key: 'k0647b' }],
['circle', { cx: '5', cy: '19', r: '1', key: 'bfqh0e' }],
];
/**
* @component @name Rss
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/rss
* @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 Rss = (props) => <Icon {...props} name="Rss" iconNode={iconNode}/>;
export default Rss;