@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.89 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M17.68 14.175a6 6 0 0 1 2.112 4.093A9.98 9.98 0 0 1 12 22q-.813 0-1.59-.126a11 11 0 0 0 2.126-.946 10.97 10.97 0 0 0 5.145-6.754Zm-1.81-1.05a8.98 8.98 0 0 1-4.334 6.071 8.96 8.96 0 0 1-4.979 1.194 10 10 0 0 1-2.479-2.286 7.97 7.97 0 0 0 5.16-.988 7.97 7.97 0 0 0 3.544-4.265 5.97 5.97 0 0 1 3.088.274M4.244 5.688C4.084 6.433 4 7.207 4 8a10.97 10.97 0 0 0 3.277 7.832 6 6 0 0 1-4.605-.22A10 10 0 0 1 2 12c0-2.394.841-4.59 2.244-6.312m14.22 3.116a8.96 8.96 0 0 1 3.523 3.713 10 10 0 0 1-.739 3.294 7.97 7.97 0 0 0-3.436-3.977 7.97 7.97 0 0 0-5.467-.937 5.97 5.97 0 0 1-1.306-2.81 8.98 8.98 0 0 1 7.425.717m-7.789-6.717A7.97 7.97 0 0 0 8.95 7.05c0 1.986.725 3.804 1.922 5.202a5.97 5.97 0 0 1-1.78 2.537A8.98 8.98 0 0 1 6 7.999a8.96 8.96 0 0 1 1.456-4.91 9.9 9.9 0 0 1 3.22-1.002Zm2.859.03a10.01 10.01 0 0 1 7.815 6.325 11 11 0 0 0-1.885-1.37 10.97 10.97 0 0 0-8.421-1.079 6 6 0 0 1 2.49-3.876Z"/>
</G>
</Svg>);
});
Icon.displayName = 'VolleyballFill';
/**
* MingCute Icon: Volleyball Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const VolleyballFill = Icon;