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

35 lines
836 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgTvFix(
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="M2 20V9a2 2 0 012-2h16a2 2 0 012 2v11a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<Path
d="M13.657 12.828l-2.829 2.829M16.485 12.828A2 2 0 1113.657 10M10.828 18.485A2 2 0 008 15.657M8.5 2.5L12 6l3.5-3.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTvFix);
export default ForwardRef;