lucide-solid
Version:
A Lucide icon library package for Solid applications
48 lines (42 loc) • 2.45 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.
*/
;
var web = require('solid-js/web');
var Icon = require('../Icon.js');
const iconNode = [['path', {
d: 'M11.25 16.25h1.5L12 17z',
key: 'w7jh35'
}], ['path', {
d: 'M16 14v.5',
key: '1lajdz'
}], ['path', {
d: 'M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309',
key: 'u7s9ue'
}], ['path', {
d: 'M8 14v.5',
key: '1nzgdb'
}], ['path', {
d: 'M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5',
key: 'v8hric'
}]];
/**
* @component @name Dog
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/dog
* @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 Dog = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "dog"
}));
module.exports = Dog;
//# sourceMappingURL=dog.js.map