lucide-solid
Version:
A Lucide icon library package for Solid applications
18 lines (17 loc) • 1.04 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7', key: '1a2nng' }],
];
/**
* @component @name Framer
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/framer
* @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
*/
const Framer = (props) => <Icon {...props} name="Framer" iconNode={iconNode}/>;
export default Framer;