@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 323 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgExpandRightFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M13.586 4.586 21 12l-7.414 7.414V13H8v-2h5.586V4.586ZM4 19V5h2v14H4Z" />
</Svg>
);
export default SvgExpandRightFill;