react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 482 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMickeyFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M18.5 2a4.5 4.5 0 0 1 .883 8.913 8 8 0 1 1-14.765-.001A4.499 4.499 0 0 1 5.5 2a4.5 4.5 0 0 1 4.493 4.254A8 8 0 0 1 12 6c.693 0 1.365.088 2.006.254A4.5 4.5 0 0 1 18.5 2" />
</Svg>
);
export default SvgMickeyFill;