lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.33 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', ry: '2', key: '1m3agn' }],
['rect', { width: '3', height: '9', x: '7', y: '7', key: '14n3xi' }],
['rect', { width: '3', height: '5', x: '14', y: '7', key: 's4azjd' }],
];
/**
* @component @name Trello
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/trello
* @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
* @deprecated
*/
const Trello = (props) => <Icon {...props} name="Trello" iconNode={iconNode}/>;
export default Trello;