@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 350 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSimCardFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M5 2h10l4.707 4.707a1 1 0 0 1 .293.707V21a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm3 10v6h8v-6H8Z" />
</Svg>
);
export default SvgSimCardFill;