@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.25 kB
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="M12.705 17.793c.827.827 1.588 1.207 2.293 1.207.378 0 .68-.067 1.237-.276l.392-.152c1.05-.421 1.58-.572 2.371-.572 1.214 0 2.379.545 3.486 1.58l.221.213-1.414 1.414C20.464 20.38 19.703 20 18.998 20c-.378 0-.68.067-1.237.276l-.392.152c-1.05.421-1.58.572-2.371.572-1.214 0-2.379-.545-3.486-1.58l-.221-.213zM8.998 3a3 3 0 1 0 6 0h6a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-9a2 2 0 0 0-1.994 1.85l-.006.15v7h-4a1 1 0 0 1-1-1l-.001-8.001L2.998 12a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm3.707 10.793c.827.827 1.588 1.207 2.293 1.207.378 0 .68-.067 1.237-.276l.392-.152c1.05-.421 1.58-.572 2.371-.572 1.214 0 2.379.545 3.486 1.58l.221.213-1.414 1.414C20.464 16.38 19.703 16 18.998 16c-.378 0-.68.067-1.237.276l-.392.152c-1.05.421-1.58.572-2.371.572-1.214 0-2.379-.545-3.486-1.58l-.221-.213z"/>
</Svg>);
});
Icon.displayName = 'TShirtAirFill';
/**
* Remix Icon: T Shirt Air Fill
* @see {@link https://remixicon.com/icon/t-shirt-air-fill Remix Icon Docs}
*/
export const TShirtAirFill = Icon;