lucide-solid
Version:
A Lucide icon library package for Solid applications
51 lines (45 loc) • 1.58 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.
*/
;
var web = require('solid-js/web');
var Icon = require('../Icon.js');
const iconNode = [['line', {
x1: '19',
x2: '10',
y1: '4',
y2: '4',
key: '15jd3p'
}], ['line', {
x1: '14',
x2: '5',
y1: '20',
y2: '20',
key: 'bu0au3'
}], ['line', {
x1: '15',
x2: '9',
y1: '4',
y2: '20',
key: 'uljnxc'
}]];
/**
* @component @name Italic
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/italic
* @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 Italic = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "italic"
}));
module.exports = Italic;
//# sourceMappingURL=italic.js.map