lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.25 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M2 18v3c0 .6.4 1 1 1h4v-3h3v-3h2l1.4-1.4a6.5 6.5 0 1 0-4-4Z', key: '167ctg' }],
['circle', { cx: '16.5', cy: '7.5', r: '.5', fill: 'currentColor', key: 'w0ekpg' }],
];
/**
* @component @name KeyRound
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/key-round
* @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 KeyRound = (props) => <Icon {...props} name="KeyRound" iconNode={iconNode}/>;
export default KeyRound;