@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.19 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" fillRule="evenodd">
<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="M13 19a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1zM12 2a8 8 0 0 1 8 8c0 2.856-1.431 5.106-3.074 6.612a10.7 10.7 0 0 1-2.556 1.743c-.818.392-1.66.645-2.37.645s-1.552-.253-2.37-.645a10.7 10.7 0 0 1-2.556-1.743C5.431 15.106 4 12.856 4 10a8 8 0 0 1 8-8m0 1c-.892 0-1.746.167-2.53.471-.195.323-.409.712-.623 1.162C8.177 6.042 7.5 8.064 7.5 10.5c0 2.292.599 4.22 1.229 5.613l.118.255.096.197.191.371.253.156c.843.498 1.655.8 2.277.884l.18.018L12 18l.156-.006.18-.018c.622-.085 1.434-.386 2.277-.884l.253-.156.19-.37.097-.198.118-.255A13.65 13.65 0 0 0 16.5 10.5c0-2.436-.676-4.458-1.347-5.867-.214-.45-.428-.839-.622-1.162A7 7 0 0 0 12 3m0 .008a1 1 0 0 0 .084.393l.064.123.209.28.202.29.172.267.113.188c.157.263.33.58.503.943.58 1.216 1.153 2.944 1.153 5.008s-.574 3.792-1.153 5.008c-.144.303-.288.573-.423.807l-.099.169-.226.36-.04.062-.202.29-.194.257a1 1 0 0 0-.133.305l-.02.107-.01.129-.009-.13-.028-.133a1 1 0 0 0-.065-.172l-.046-.082-.209-.282-.202-.289-.172-.267-.113-.188a12 12 0 0 1-.503-.943C10.073 14.292 9.5 12.564 9.5 10.5s.574-3.792 1.153-5.008c.144-.303.288-.573.423-.807l.099-.169.226-.36.04-.062.202-.29.126-.165.083-.115A1 1 0 0 0 12 3.008"/>
</G>
</Svg>);
});
Icon.displayName = 'AirBalloonFill';
/**
* MingCute Icon: Air Balloon Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const AirBalloonFill = Icon;