UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

12 lines (11 loc) 1.33 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="none" viewBox="0 0 26 9" width={size} height={size} {...props}> <Path fill="#EE312A" d="M4.493 8.987a4.494 4.494 0 1 0 0-8.987 4.494 4.494 0 0 0 0 8.987"/> <Path fill="#fff" d="M4.494 6.41C3.49 4.135 2.753 2.007 2.753 2.007h-1.54s.937 2.73 2.678 6.145h1.206c1.741-3.414 2.678-6.145 2.678-6.145h-1.54S5.5 4.134 4.495 6.411M25.963 6.125h-3.001s.066 1.009 1.4 1.009c.667 0 1.334-.202 1.334-.202l.133 1.076s-.667.269-1.6.269c-1.334 0-2.535-.673-2.535-2.555 0-1.479.934-2.42 2.268-2.42 2 0 2.134 2.017 2 2.823m-2.068-1.882c-.867 0-.933.941-.933.941h1.867s-.067-.94-.934-.94M15.6 4.54l.2-1.07S14.257 3 13 3.873v4.28h1.334V4.673c.533-.4 1.267-.133 1.267-.133M11.959 6.125H8.958s.066 1.009 1.4 1.009c.667 0 1.334-.202 1.334-.202l.133 1.076s-.666.269-1.6.269c-1.334 0-2.535-.673-2.535-2.555 0-1.479.934-2.42 2.268-2.42 2 0 2.134 2.017 2 2.823M9.89 4.243c-.867 0-.933.941-.933.941h1.867s-.067-.94-.934-.94M18.852 6.546a21 21 0 0 1-1.004-3.118h-1.337s.669 2.583 1.806 4.723h1.07c1.136-2.14 1.805-4.723 1.805-4.723h-1.337a21 21 0 0 1-1.003 3.118"/> </Svg>); }); Icon.displayName = 'VerveLogoDark'; export const VerveLogoDark = Icon;