@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 885 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="M19 21H5v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-9l2.417-4.029A2 2 0 0 1 6.132 8h11.736a2 2 0 0 1 1.715.971L22 13v9a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1zM4.332 13h15.336l-1.8-3H6.132zM6.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m11 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M5.44 3.44 6.5 2.378l1.06 1.06a1.5 1.5 0 1 1-2.121 0m5.5 0L12 2.378l1.06 1.06a1.5 1.5 0 1 1-2.121 0m5.5 0 1.06-1.061 1.06 1.06a1.5 1.5 0 1 1-2.121 0"/>
</Svg>);
});
Icon.displayName = 'CarWashingFill';
/**
* Remix Icon: Car Washing Fill
* @see {@link https://remixicon.com/icon/car-washing-fill Remix Icon Docs}
*/
export const CarWashingFill = Icon;