@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 764 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M16 1a1 1 0 0 1 1 1v1h5v6h-2.019l2.746 7.545A4 4 0 1 1 15.126 19h-4.252a4.002 4.002 0 0 1-7.8-.226A2 2 0 0 1 2 17V7a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V3h-3V1zm3 15a2 2 0 1 0 1.88 1.316l-.017-.044A2 2 0 0 0 19 16M7 16a2 2 0 1 0 0 4 2 2 0 0 0 0-4m2-8H4v2h5zm11-3h-3v2h3z"/>
</Svg>);
});
Icon.displayName = 'EBike2Fill';
/**
* Remix Icon: E Bike 2 Fill
* @see {@link https://remixicon.com/icon/e-bike-2-fill Remix Icon Docs}
*/
export const EBike2Fill = Icon;