@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.79 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="M16 3a1 1 0 0 1 .993.883L17 4v1h2a2 2 0 0 1 1.995 1.85L21 7v12a2 2 0 0 1-1.85 1.995L19 21H5a2 2 0 0 1-1.995-1.85L3 19V7a2 2 0 0 1 1.85-1.995L5 5h2V4a1 1 0 0 1 1.993-.117L9 4v1h6V4a1 1 0 0 1 1-1m3 4H5v12h14zm-3.834 1.876c1.112.648 1.866 1.942 1.833 3.422-.041 1.836-1.41 3.344-3.438 4.6l-.246.149c-.403.24-.83.508-1.315.508-.364 0-.695-.15-1.008-.328l-.307-.18c-2.163-1.285-3.641-2.84-3.684-4.749-.033-1.48.721-2.774 1.833-3.422.954-.556 2.135-.607 3.166.037 1.03-.644 2.212-.593 3.166-.037m-1.007 1.728c-.379-.22-.83-.246-1.278.136l-.111.105a1.084 1.084 0 0 1-1.445.085l-.095-.085c-.484-.49-.979-.48-1.389-.24-.461.268-.858.87-.84 1.648.017.78.618 1.78 2.468 2.93l.238.144q.145.088.293.172l.147-.085.146-.087c2.036-1.21 2.688-2.262 2.706-3.074.018-.778-.379-1.38-.84-1.649"/>
</G>
</Svg>);
});
Icon.displayName = 'AnniversaryLine';
/**
* MingCute Icon: Anniversary Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const AnniversaryLine = Icon;