@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 3.7 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="M9.886 2.452q.88-.7 2.11-.702c.818 0 1.519.236 2.106.7.547.432.921 1.005 1.218 1.537q.146.26.278.52.255-.054.517-.1c.605-.108 1.293-.183 1.978-.033.738.16 1.37.557 1.891 1.201.553.683.804 1.424.781 2.217-.02.725-.27 1.41-.521 2.005q-.075.175-.152.35.2.167.397.343c.464.413.957.912 1.269 1.546.338.687.42 1.437.23 2.256q-.27 1.166-1.118 1.865c-.53.436-1.154.676-1.726.847-.2.06-.42.118-.646.175-.005.258-.013.51-.03.744-.042.584-.142 1.231-.452 1.831q-.494.956-1.544 1.468c-.773.377-1.535.46-2.292.273-.695-.171-1.3-.553-1.814-.922a20 20 0 0 1-.366-.27q-.18.136-.363.268c-.515.37-1.12.753-1.815.925-.757.189-1.52.105-2.294-.272q-1.05-.51-1.543-1.465c-.31-.598-.412-1.245-.454-1.828a15 15 0 0 1-.031-.749 15 15 0 0 1-.641-.172c-.573-.171-1.2-.41-1.73-.846q-.85-.7-1.12-1.867c-.19-.818-.109-1.567.228-2.254.31-.634.802-1.132 1.265-1.546q.2-.177.4-.346l-.15-.345C3.5 9.21 3.25 8.524 3.228 7.799c-.024-.794.226-1.536.78-2.22.52-.643 1.151-1.04 1.89-1.201.683-.15 1.37-.076 1.975.03q.264.047.52.1.132-.256.275-.516c.297-.532.672-1.107 1.218-1.54M7.17 6.828c-.355-.048-.579-.043-.738-.008-.142.031-.29.096-.481.332-.199.246-.23.409-.225.572.005.169.053.386.168.702.248-.245.5-.513.756-.814q.29-.406.52-.784m-.219 4.026a16.6 16.6 0 0 0 1.64-1.665l.03-.036.029-.04c.428-.594.79-1.198 1.1-1.761.662.12 1.4.224 2.18.263l.06.003.062-.003a17 17 0 0 0 2.192-.264c.307.56.666 1.16 1.091 1.75l.028.038.031.037a16.5 16.5 0 0 0 1.65 1.675 16 16 0 0 0-.858 2.715l-.01.047-.006.047a17 17 0 0 0-.138 1.56c-.53.147-1.104.33-1.713.573l-.044.017-.043.021c-.855.42-1.598.894-2.233 1.344a16 16 0 0 0-2.22-1.336l-.043-.021-.044-.018a17 17 0 0 0-1.728-.579 17 17 0 0 0-.135-1.544l-.007-.046-.01-.047a16 16 0 0 0-.86-2.73m-2.015 1.723c-.25.243-.383.42-.455.567-.065.134-.106.291-.037.59.067.29.168.412.273.499.126.103.331.212.697.331a13 13 0 0 0-.056-.503 12 12 0 0 0-.422-1.484m3.097 5.278c.035.39.098.613.172.755.06.116.157.24.419.367.28.137.444.131.595.093.161-.04.363-.133.65-.318-.348-.22-.726-.438-1.15-.648a13 13 0 0 0-.686-.25m6.097.896c.287.185.49.278.65.317.152.038.316.043.596-.093.262-.128.359-.251.419-.367.073-.142.136-.365.17-.756q-.33.11-.675.245c-.427.212-.81.431-1.16.654m4.452-4.19c.367-.12.571-.23.697-.333.106-.087.206-.21.273-.498.07-.3.029-.457-.037-.59-.072-.147-.206-.324-.456-.567-.157.449-.3.933-.418 1.472a14 14 0 0 0-.059.516M18.1 8.422c.114-.316.161-.533.166-.701.005-.164-.026-.327-.225-.572-.191-.237-.339-.302-.48-.333-.16-.034-.384-.039-.739.01q.228.373.514.774c.259.304.513.575.764.822m-5.071-3.404c-.196-.326-.346-.503-.477-.607-.112-.088-.255-.161-.557-.161s-.445.073-.557.162c-.13.103-.28.28-.476.606.322.043.662.077 1.03.097.37-.02.713-.054 1.037-.097"/>
</G>
</Svg>);
});
Icon.displayName = 'AppleIntelligenceFill';
/**
* MingCute Icon: Apple Intelligence Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const AppleIntelligenceFill = Icon;