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 = [
['rect', { width: '12', height: '20', x: '6', y: '2', rx: '2', key: '1oxtiu' }],
['rect', { width: '20', height: '12', x: '2', y: '6', rx: '2', key: '9lu3g6' }],
];
/**
* @component @name Ratio
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/ratio
* @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 Ratio = (props) => <Icon {...props} name="Ratio" iconNode={iconNode}/>;
export default Ratio;