lucide-solid
Version:
A Lucide icon library package for Solid applications
40 lines (35 loc) • 1.92 kB
JavaScript
/**
* @license lucide-solid v0.488.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../Icon.js';
const iconNode = [['path', {
d: 'M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2',
key: '10n0gc'
}], ['path', {
d: 'm15.194 13.707 3.814 1.86-1.86 3.814',
key: '16shm9'
}], ['path', {
d: 'M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4',
key: '1lxi77'
}]];
/**
* @component @name Rotate3d
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/rotate-3d
* @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 Rotate3d = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "rotate-3d"
}));
export { Rotate3d as default };
//# sourceMappingURL=rotate-3d.js.map