iconoir/packages/iconoir-react-native/src/CompressLines.tsx

31 lines
677 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgCompressLines(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 2H6M18 22H6M12 5v5m0 0l3-3m-3 3L9 7M12 19v-5m0 0l3 3m-3-3l-3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCompressLines);
export default ForwardRef;