lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.45 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3', key: '37hlfg' }],
['path', { d: 'M14 2v4a2 2 0 0 0 2 2h4', key: 'tnqrlb' }],
['path', { d: 'M4 11.5a6.02 6.02 0 1 0 8.5 8.5', key: 'unkkko' }],
['path', { d: 'M14 16c0-3.3-2.7-6-6-6v6Z', key: 'bym002' }],
];
/**
* @component @name FilePieChart
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/file-pie-chart
* @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 FilePieChart = (props) => (<Icon {...props} name="FilePieChart" iconNode={iconNode}/>);
export default FilePieChart;