UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 1.24 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="M20 12a8 8 0 1 0-16 0 8 8 0 0 0 16 0m2 0c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10m-5.294-1.436c-.174 1.053-.725 1.567-1.471 1.749.992.555 1.47 1.398.959 2.877-.635 1.854-2.057 2.022-3.94 1.663l-.486 1.957-1.094-.271.485-1.957c-.298-.08-.602-.138-.899-.223l-.485 1.957-1.092-.27.485-1.958-2.176-.592.54-1.384s.822.226.81.212c.304.074.453-.14.514-.288l.776-3.137.566-2.23c.024-.241-.052-.557-.497-.677.03-.017-.8-.198-.8-.198l.323-1.312 2.243.556.475-1.917 1.13.28-.475 1.917c.291.064.574.14.866.215l.474-1.917 1.1.272-.488 1.967c1.387.51 2.386 1.263 2.157 2.709m-5.1.39c.657.198 2.605.783 2.933-.52.306-1.24-1.382-1.618-2.166-1.794q-.14-.03-.235-.055l-.587 2.353zm-1.014 3.82.095.029c.81.24 3.106.923 3.418-.37.32-1.246-1.744-1.731-2.669-1.949q-.153-.035-.258-.062z"/> </Svg>); }); Icon.displayName = 'BtcLine'; /** * Remix Icon: Btc Line * @see {@link https://remixicon.com/icon/btc-line Remix Icon Docs} */ export const BtcLine = Icon;