react-native-remix-icons
Version:
Remix Icon for React Native
14 lines (13 loc) • 397 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"
{...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;