UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.66 kB
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="m12 13.414 1.458 1.458A8 8 0 0 0 12.091 22a9.97 9.97 0 0 1-6.138-2.034l-.282-.223zm2.887 2.887 3.442 3.442a9.94 9.94 0 0 1-4.21 2.031 6.01 6.01 0 0 1 .768-5.473m-5.76-5.759L10.587 12l-6.33 6.329A9.97 9.97 0 0 1 2 11.909a8 8 0 0 0 7.128-1.367Zm12.647 3.576a9.9 9.9 0 0 1-1.8 3.918l-.23.293-3.443-3.442a6.01 6.01 0 0 1 5.473-.769m-2.03-8.447A9.97 9.97 0 0 1 22 12.09a8 8 0 0 0-6.878 1.18l-.25.187L13.414 12zM11.908 2a9.97 9.97 0 0 1 6.138 2.033l.282.223L12 10.586l-1.458-1.458A8 8 0 0 0 11.909 2ZM4.257 5.67l3.442 3.442a6.01 6.01 0 0 1-5.473.769 9.94 9.94 0 0 1 2.03-4.211Zm5.625-3.445a6.01 6.01 0 0 1-.611 5.24l-.158.233L5.67 4.257a9.94 9.94 0 0 1 4.21-2.031Z"/> </G> </Svg>); }); Icon.displayName = 'BasketballFill'; /** * MingCute Icon: Basketball Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const BasketballFill = Icon;