UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 1.4 kB
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10m-3.671-9.696c-.04.85.037 1.697.118 2.544.005.06.027.074.08.08.406.054.813.102 1.222.127.964.061 1.928.139 2.896.085.55-.03 1.1-.048 1.648-.095.78-.068 1.56-.155 2.33-.312.958-.194 1.907-.425 2.8-.845.406-.19.79-.415 1.114-.736.238-.235.408-.507.41-.86a9 9 0 0 0-.045-.94 9 9 0 0 0-.482-2.18c-.583-1.618-1.509-2.989-2.825-4.07a8.9 8.9 0 0 0-3.851-1.863c-.5-.105-1.006-.144-1.514-.18-.573-.041-1.064.12-1.488.514-.495.457-.837 1.025-1.122 1.633-.667 1.427-.973 2.954-1.166 4.508-.106.857-.166 1.721-.125 2.59m3.57-5.03c.959.03 1.77.324 2.494.856a4.33 4.33 0 0 1 1.714 2.612c.068.304.097.612.103.922.005.209-.11.362-.262.49-.307.258-.67.401-1.05.508a10.3 10.3 0 0 1-2.265.366c-.5.026-1 .035-1.5.01-.192-.01-.384-.024-.577-.032-.06-.002-.08-.02-.083-.081-.024-.434-.058-.868-.051-1.302.016-1.026.094-2.045.397-3.034.1-.329.223-.65.42-.936.173-.25.378-.437.66-.38"/> </Svg>); }); Icon.displayName = 'CoreosFill'; /** * Remix Icon: Coreos Fill * @see {@link https://remixicon.com/icon/coreos-fill Remix Icon Docs} */ export const CoreosFill = Icon;