lucide-solid
Version:
A Lucide icon library package for Solid applications
47 lines (42 loc) • 1.92 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: 'M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2',
key: '5owen'
}], ['circle', {
cx: '7',
cy: '17',
r: '2',
key: 'u2ysq9'
}], ['path', {
d: 'M9 17h6',
key: 'r8uit2'
}], ['circle', {
cx: '17',
cy: '17',
r: '2',
key: 'axvx0g'
}]];
/**
* @component @name Car
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/car
* @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 Car = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "car"
}));
export { Car as default };
//# sourceMappingURL=car.js.map