react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 507 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSpeedMiniFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M4.788 17.443A.5.5 0 0 1 4 17.035V6.965a.5.5 0 0 1 .788-.409l7.133 5.035a.5.5 0 0 1 0 .817zM13 6.965a.5.5 0 0 1 .788-.409l7.133 5.035a.5.5 0 0 1 0 .817l-7.133 5.035a.5.5 0 0 1-.788-.408z" />
</Svg>
);
export default SvgSpeedMiniFill;