@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.71 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.215 4.63a1.72 1.72 0 0 0-2.43 0l-.155.154a1.937 1.937 0 0 0-.1 2.63l.963 1.124 1.624-1.388c.76-.651.806-1.813.098-2.52m-.42 5.427 1.621-1.387a3.718 3.718 0 1 0-5.045-5.455l-.155.155a3.937 3.937 0 0 0-.205 5.346l.922 1.076A19 19 0 0 0 7.63 11c-.618.631-1.261 1.388-1.755 2.214C5.384 14.032 5 14.988 5 16c0 3.616 3.014 6 6 6 1.406 0 3.03-.289 4.633-1.601a9.3 9.3 0 0 0 1.283-1.293l1.325 1.545a1 1 0 0 0 1.518-1.302l-1.666-1.943c.649-1.099 1.267-2.44 1.849-4.07a1 1 0 0 0-1.884-.672c-.443 1.241-.896 2.27-1.35 3.125l-4.914-5.732Zm3.795 7.502-5.355-6.249a17 17 0 0 0-1.177 1.09c-.554.565-1.082 1.196-1.467 1.84C7.2 14.892 7 15.487 7 16c0 2.384 1.986 4 4 4 1.094 0 2.22-.211 3.367-1.149a7.6 7.6 0 0 0 1.223-1.292"/>
</G>
</Svg>);
});
Icon.displayName = 'AndLine';
/**
* MingCute Icon: And Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const AndLine = Icon;