lucide-solid
Version:
A Lucide icon library package for Solid applications
44 lines (38 loc) • 1.51 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: 'M21 17a9 9 0 0 0-15-6.7L3 13',
key: '8mp6z9'
}], ['path', {
d: 'M3 7v6h6',
key: '1v2h90'
}], ['circle', {
cx: '12',
cy: '17',
r: '1',
key: '1ixnty'
}]];
/**
* @component @name UndoDot
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/undo-dot
* @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 UndoDot = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "undo-dot"
}));
module.exports = UndoDot;
//# sourceMappingURL=undo-dot.js.map