@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.89 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 53 17" fill={color} height={size} width={size} {...otherProps}>
<Path d="M3.5444 6.65774L3.42818 0.575874H0V16.506H3.5444V10.2389C3.63156 5.39197 5.3747 3.81748 10.0521 3.50875V0.328894C5.86859 0.328894 4.32881 2.02688 3.66061 6.65774H3.5444Z"/>
<Path d="M11.6552 16.506H15.1996V0.575874H11.6552V16.506Z"/>
<Path d="M24.3795 17C28.6212 17 31.1197 15.1477 31.1197 12.0295C31.1197 9.65236 29.6961 8.29398 26.7618 7.61479L22.8107 6.71949C21.5614 6.41076 20.8642 5.73157 20.8642 4.86714C20.8642 3.60137 22.0553 2.82956 24.0309 2.82956C26.2098 2.82956 27.4881 3.94097 27.4881 5.76244H30.8872C30.8872 2.18124 28.3016 0.0819159 23.9147 0.0819159C19.9054 0.0819159 17.3779 1.996 17.3779 4.95976C17.3779 7.36781 19.0339 8.88056 21.7648 9.46713L25.5416 10.3316C27.0814 10.702 27.6043 11.2269 27.6043 12.1839C27.6043 13.4805 26.3841 14.2524 24.4086 14.2524C21.9972 14.2524 20.6317 13.2027 20.5155 11.3195H17.0292C17.1455 14.9624 19.7602 17 24.3795 17Z"/>
<Path d="M47.1949 8.01613C47.1949 3.63224 44.3769 0.0819159 39.7866 0.0819159C35.1672 0.0819159 32.1167 3.29265 32.1167 8.47921C32.1167 14.098 35.2254 17 39.9609 17C43.3019 17 46.6139 14.8698 47.0787 10.949H43.8539C43.4762 12.7396 42.0527 14.0671 39.9609 14.0671C37.4043 14.0671 35.603 12.3383 35.5159 9.25102H47.1949V8.01613ZM39.6413 3.0148C41.9946 3.0148 43.5343 4.55842 43.7087 7.12083H35.5159C35.6902 4.40405 37.4333 3.0148 39.6413 3.0148Z"/>
<Path d="M53 2.44534C53 3.79586 51.9697 4.89068 50.6988 4.89068C49.4279 4.89068 48.3976 3.79586 48.3976 2.44534C48.3976 1.09482 49.4279 0 50.6988 0C51.9697 0 53 1.09482 53 2.44534Z"/>
</Svg>);
};
Icon.displayName = 'RiseFull';
export const RiseFull = memo(Icon);