@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
16 lines (15 loc) • 2.25 kB
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 26 10" fill="none" height={size} width={size} {...otherProps}>
<Path d="M4.49349 9.64147C6.97518 9.64147 8.98698 7.62964 8.98698 5.14791C8.98698 2.66618 6.97518 0.654343 4.49349 0.654343C2.0118 0.654343 0 2.66618 0 5.14791C0 7.62964 2.0118 9.64147 4.49349 9.64147Z" fill="#EE312A"/>
<Path d="M4.49418 7.06501C3.48966 4.7879 2.753 2.66078 2.753 2.66078H1.21289C1.21289 2.66078 2.15029 5.39108 3.89147 8.80547H5.0969C6.83808 5.39108 7.77548 2.66078 7.77548 2.66078H6.23537C6.23537 2.66078 5.49871 4.7879 4.49418 7.06501Z" fill="white"/>
<Path d="M25.9627 6.77983H22.9615C22.9615 6.77983 23.0282 7.78832 24.362 7.78832C25.0289 7.78832 25.6959 7.58647 25.6959 7.58647L25.8293 8.66197C25.8293 8.66197 25.1624 8.93086 24.2286 8.93086C22.8948 8.93086 21.6943 8.25865 21.6943 6.37651C21.6943 4.89766 22.628 3.95659 23.9619 3.95659C25.9627 3.95659 26.0961 5.97319 25.9627 6.77983ZM23.8952 4.89766C23.0282 4.89766 22.9615 5.83873 22.9615 5.83873H24.8289C24.8289 5.83873 24.7622 4.89766 23.8952 4.89766Z" fill="#003757"/>
<Path d="M15.6006 5.19487L15.8006 4.12503C15.8006 4.12503 14.2557 3.65494 13 4.52622V8.80547H14.3337L14.3336 5.32859C14.867 4.92741 15.6006 5.19487 15.6006 5.19487Z" fill="#003757"/>
<Path d="M11.9588 6.77983H8.95762C8.95762 6.77983 9.0243 7.78832 10.3582 7.78832C11.0251 7.78832 11.692 7.58647 11.692 7.58647L11.8254 8.66197C11.8254 8.66197 11.1585 8.93086 10.2248 8.93086C8.8909 8.93086 7.69043 8.25865 7.69043 6.37651C7.69043 4.89766 8.62414 3.95659 9.95801 3.95659C11.9588 3.95659 12.0921 5.97319 11.9588 6.77983ZM9.89128 4.89766C9.0243 4.89766 8.95762 5.83873 8.95762 5.83873H10.825C10.825 5.83873 10.7583 4.89766 9.89128 4.89766Z" fill="#003757"/>
<Path d="M18.8515 7.20057C18.4357 6.18902 18.1003 5.14627 17.8483 4.082L16.5107 4.08218C16.5107 4.08218 17.1795 6.66517 18.3166 8.80547H19.3865C20.5235 6.66517 21.1923 4.08265 21.1923 4.08265H19.8548C19.6027 5.1467 19.2673 6.18923 18.8515 7.20057Z" fill="#003757"/>
</Svg>);
};
Icon.displayName = 'VerveLogo';
export const VerveLogo = memo(Icon);