lucide-solid
Version:
A Lucide icon library package for Solid applications
40 lines (35 loc) • 1.85 kB
JavaScript
/**
* @license lucide-solid v0.487.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: 'm21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z',
key: '1u2ovd'
}], ['path', {
d: 'M10 22v-8L2.25 9.15',
key: '11pn4q'
}], ['path', {
d: 'm10 14 11.77-6.87',
key: '1kt1wh'
}]];
/**
* @component @name Cuboid
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/cuboid
* @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 Cuboid = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "cuboid"
}));
export { Cuboid as default };
//# sourceMappingURL=cuboid.js.map