@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.8 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="M12 2c5.523 0 10 4.477 10 10l-.005.314.005.186q0 .368-.073.715C21.327 18.165 17.112 22 12 22 6.477 22 2 17.523 2 12S6.477 2 12 2M7 9a3 3 0 1 0 0 6c1.689 0 3.148-.812 4.608-1.919l.257-.198 1.129 1.095.324.308C11.633 15.63 9.57 17 7 17c-.486 0-.955-.07-1.4-.198A7.99 7.99 0 0 0 12 20a8 8 0 0 0 6.946-4.028A4 4 0 0 1 18.5 16c-1.21 0-2.273-.602-3.18-1.302-.626-.482-1.257-1.075-1.873-1.673l-1.06-1.027-.458-.43C10.33 10.096 8.786 9 7 9m5-5a7.99 7.99 0 0 0-6.4 3.198A5 5 0 0 1 7 7c2.43 0 4.4 1.396 6.008 2.843l.412.378.395.375 1.3 1.259c.495.474.961.902 1.425 1.26.795.612 1.42.885 1.96.885a1.5 1.5 0 0 0 1.453-1.125q.028-.26.04-.526A1.5 1.5 0 0 0 18.5 11c-.586 0-1.23.251-2.012.767q-.235-.21-.483-.445l-.997-.964q.186-.132.37-.255C16.297 9.497 17.339 9 18.5 9c.337 0 .664.048.972.137A8 8 0 0 0 12 4"/>
</G>
</Svg>);
});
Icon.displayName = 'SiriLine';
/**
* MingCute Icon: Siri Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const SiriLine = Icon;