@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.09 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M12 1.565c1.15 0 2.172.515 3.018 1.296 1.54 1.422 2.885 3.852 3.958 6.203 1.1 2.407 2.011 4.956 2.62 6.799.749 2.266-.234 4.67-2.222 5.861a5.134 5.134 0 0 1-6.509-1.013c-.276-.316-.568-.65-.865-.993-.297.343-.59.677-.865.993a5.134 5.134 0 0 1-6.51 1.014c-1.987-1.193-2.97-3.596-2.221-5.862.609-1.843 1.52-4.392 2.62-6.8 1.073-2.35 2.418-4.78 3.958-6.202.846-.78 1.869-1.296 3.018-1.296m1.973 15.85c.517-.616.955-1.152 1.227-1.515 1.036-1.381 1.311-3.152.785-4.648C15.432 9.678 14.008 8.5 12 8.5s-3.432 1.178-3.985 2.752c-.526 1.496-.25 3.267.785 4.648.272.363.71.9 1.227 1.515-.388.448-.779.896-1.15 1.32a2.134 2.134 0 0 1-2.708.417c-.843-.506-1.204-1.48-.916-2.348.592-1.792 1.464-4.226 2.5-6.494 1.061-2.325 2.202-4.264 3.265-5.245.669-.618 1.295-.618 1.964 0 1.063.981 2.204 2.92 3.265 5.245 1.036 2.268 1.908 4.702 2.5 6.494.288.869-.073 1.842-.916 2.348a2.134 2.134 0 0 1-2.708-.417c-.371-.424-.762-.872-1.15-1.32M12 15.098a29 29 0 0 1-.8-.998c-.464-.62-.533-1.348-.355-1.853.15-.425.475-.747 1.155-.747s1.005.322 1.155.747c.178.505.11 1.234-.355 1.853-.183.244-.461.59-.8.998"/>
</G>
</Svg>);
});
Icon.displayName = 'AirbnbFill';
/**
* MingCute Icon: Airbnb Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const AirbnbFill = Icon;