UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 1.34 kB
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-4.002v-2l3.002-.001v-5h-3.417l-.017.041a5 5 0 0 1-4.35 2.955L11.999 8a5 5 0 0 1-4.566-2.96L7.414 5H3.998v5l2.999-.001V19h3.001v2h-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 = 'TShirtAirLine'; /** * Remix Icon: T Shirt Air Line * @see {@link https://remixicon.com/icon/t-shirt-air-line Remix Icon Docs} */ export const TShirtAirLine = Icon;