lucide-solid
Version:
A Lucide icon library package for Solid applications
42 lines (36 loc) • 1.45 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 = [['polygon', {
points: '19 20 9 12 19 4 19 20',
key: 'o2sva'
}], ['line', {
x1: '5',
x2: '5',
y1: '19',
y2: '5',
key: '1ocqjk'
}]];
/**
* @component @name SkipBack
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/skip-back
* @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 SkipBack = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "skip-back"
}));
module.exports = SkipBack;
//# sourceMappingURL=skip-back.js.map