@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
16 lines (15 loc) • 2.23 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 9" fill="none" height={size} width={size} {...otherProps}>
<Path d="M4.49349 8.98713C6.97518 8.98713 8.98698 6.97529 8.98698 4.49357C8.98698 2.01184 6.97518 0 4.49349 0C2.0118 0 0 2.01184 0 4.49357C0 6.97529 2.0118 8.98713 4.49349 8.98713Z" fill="#EE312A"/>
<Path d="M4.49418 6.41067C3.48965 4.13356 2.753 2.00644 2.753 2.00644H1.21289C1.21289 2.00644 2.15029 4.73673 3.89147 8.15113H5.0969C6.83808 4.73673 7.77548 2.00644 7.77548 2.00644H6.23537C6.23537 2.00644 5.49871 4.13356 4.49418 6.41067Z" fill="white"/>
<Path d="M25.9627 6.12548H22.9615C22.9615 6.12548 23.0282 7.13398 24.362 7.13398C25.0289 7.13398 25.6959 6.93213 25.6959 6.93213L25.8293 8.00763C25.8293 8.00763 25.1624 8.27652 24.2286 8.27652C22.8948 8.27652 21.6943 7.60431 21.6943 5.72217C21.6943 4.24332 22.628 3.30225 23.9619 3.30225C25.9627 3.30225 26.0961 5.31885 25.9627 6.12548ZM23.8952 4.24332C23.0282 4.24332 22.9615 5.18439 22.9615 5.18439H24.8289C24.8289 5.18439 24.7622 4.24332 23.8952 4.24332Z" fill="white"/>
<Path d="M15.6006 4.54053L15.8006 3.47069C15.8006 3.47069 14.2557 3.0006 13 3.87188V8.15113H14.3337L14.3336 4.67425C14.867 4.27307 15.6006 4.54053 15.6006 4.54053Z" fill="white"/>
<Path d="M11.9588 6.12548H8.95762C8.95762 6.12548 9.0243 7.13398 10.3582 7.13398C11.0251 7.13398 11.692 6.93213 11.692 6.93213L11.8254 8.00763C11.8254 8.00763 11.1585 8.27652 10.2248 8.27652C8.89089 8.27652 7.69043 7.60431 7.69043 5.72217C7.69043 4.24332 8.62414 3.30225 9.95801 3.30225C11.9588 3.30225 12.0921 5.31885 11.9588 6.12548ZM9.89128 4.24332C9.0243 4.24332 8.95762 5.18439 8.95762 5.18439H10.825C10.825 5.18439 10.7583 4.24332 9.89128 4.24332Z" fill="white"/>
<Path d="M18.8515 6.54623C18.4357 5.53468 18.1003 4.49193 17.8483 3.42766L16.5107 3.42783C16.5107 3.42783 17.1795 6.01082 18.3166 8.15113H19.3865C20.5235 6.01082 21.1923 3.42831 21.1923 3.42831H19.8548C19.6027 4.49235 19.2673 5.53488 18.8515 6.54623Z" fill="white"/>
</Svg>);
};
Icon.displayName = 'VerveLogoDark';
export const VerveLogoDark = memo(Icon);