@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
11 lines (10 loc) • 558 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 336.41 337.42" width={size} height={size} {...props}>
<Path fill="#f0b90b" stroke="#f0b90b" d="m168.2.71 41.5 42.5-104.5 104.5-41.5-41.5ZM231.2 63.71l41.5 42.5-167.5 167.5-41.5-41.5ZM42.2 126.71l41.5 42.5-41.5 41.5-41.5-41.5ZM294.2 126.71l41.5 42.5-167.5 167.5-41.5-41.5Z"/>
</Svg>);
});
Icon.displayName = 'BusdLogo';
export const BusdLogo = Icon;