lucide-solid
Version:
A Lucide icon library package for Solid applications
48 lines (42 loc) • 2.29 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: 'M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z',
key: '1340ok'
}], ['path', {
d: 'M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z',
key: '1hz3m3'
}], ['path', {
d: 'M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z',
key: '1oz8n2'
}], ['path', {
d: 'M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z',
key: '1ff65i'
}], ['path', {
d: 'M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z',
key: 'pdip6e'
}]];
/**
* @component @name Figma
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/figma
* @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
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=figma instead. This icon will be removed in v1.0
*/
const Figma = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "figma"
}));
module.exports = Figma;
//# sourceMappingURL=figma.js.map