lucide-solid
Version:
A Lucide icon library package for Solid applications
37 lines (32 loc) • 1.7 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: 'M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z',
key: '1qvrer'
}], ['path', {
d: 'M6 17h12',
key: '1jwigz'
}]];
/**
* @component @name ChefHat
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/chef-hat
* @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 ChefHat = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "chef-hat"
}));
export { ChefHat as default };
//# sourceMappingURL=chef-hat.js.map