UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

13 lines (12 loc) 1.34 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 10" width={size} height={size} {...props}> <Path fill="#EE312A" d="M4.493 9.641a4.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 7.065a65 65 0 0 1-1.741-4.404h-1.54S2.15 5.39 3.89 8.805h1.206c1.741-3.414 2.678-6.144 2.678-6.144h-1.54S5.5 4.788 4.495 7.065"/> <Path fill="#003757" d="M25.963 6.78h-3.001s.066 1.008 1.4 1.008c.667 0 1.334-.202 1.334-.202l.133 1.076s-.667.269-1.6.269c-1.334 0-2.535-.672-2.535-2.554 0-1.48.934-2.42 2.268-2.42 2 0 2.134 2.016 2 2.823m-2.068-1.882c-.867 0-.933.94-.933.94h1.867s-.067-.94-.934-.94M15.6 5.195l.2-1.07s-1.544-.47-2.8.401v4.28h1.334V5.328c.533-.402 1.267-.134 1.267-.134M11.959 6.78H8.958s.066 1.008 1.4 1.008c.667 0 1.334-.202 1.334-.202l.133 1.076s-.666.269-1.6.269c-1.334 0-2.535-.672-2.535-2.554 0-1.48.934-2.42 2.268-2.42 2 0 2.134 2.016 2 2.823M9.89 4.898c-.867 0-.933.94-.933.94h1.867s-.067-.94-.934-.94M18.852 7.2a21 21 0 0 1-1.004-3.118h-1.337s.669 2.583 1.806 4.723h1.07c1.136-2.14 1.805-4.722 1.805-4.722h-1.337A21 21 0 0 1 18.852 7.2"/> </Svg>); }); Icon.displayName = 'VerveLogo'; export const VerveLogo = Icon;