react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 471 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShirtLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12.998 20h6v-4h-4v-2h4V6h-2v5l-4-1.6zm-2 0V9.4l-4 1.6V6h-2v14zm-4-16V3h10v1h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-16a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm5 4 3.5-3h-7z" />
</Svg>
);
export default SvgShirtLine;