react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 511 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAlignItemVerticalCenterFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M4 19a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-6h2v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4h2v-2h-2V7a1 1 0 0 0-1-1h-5a1 1 0 0 0-1 1v4h-2V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v6H2v2h2z" />
</Svg>
);
export default SvgAlignItemVerticalCenterFill;