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

57 lines
1.6 KiB
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgFrame(
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="M4.998 2.001H2v2.998h2.998V2.001zM4.998 10.502H2V13.5h2.998v-2.998z"
stroke="currentColor"
strokeWidth={1.499}
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M20.498 5v5.503M3.5 5v5.503M20.498 13.502v5.502M3.5 13.502v5.502"
stroke="currentColor"
strokeWidth={1.473}
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.999 20.502h5.5M4.999 3.503h5.5M13.498 20.499h5.5M13.498 3.501h5.5"
stroke="currentColor"
strokeWidth={1.22}
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.998 19.001H2v2.998h2.998v-2.998zM21.997 2.002H19V5h2.998V2.002zM13.497 2H10.5v2.998h2.998V2zM21.997 10.503H19V13.5h2.998v-2.998zM21.997 19.002H19V22h2.998v-2.998zM13.497 19H10.5v2.998h2.998V19z"
stroke="currentColor"
strokeWidth={1.499}
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgFrame);
export default ForwardRef;