react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 428 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCollapseVerticalFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m12 13.5 4.95 4.95-3.95-.002V23h-2v-4.552l-3.948-.001zM11 1v4.55H7.05L12 10.5l4.95-4.95H13V1z" />
</Svg>
);
export default SvgCollapseVerticalFill;