react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 486 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgTvFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M15.414 5h5.594c.548 0 .992.445.992 1v14c0 .552-.455 1-.992 1H2.992A.994.994 0 012 20V6c0-.552.455-1 .992-1h5.594L6.05 2.464 7.464 1.05 11.414 5h1.172l3.95-3.95 1.414 1.414L15.414 5z" />
</Svg>
);
}
export default SvgTvFill;