@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
11 lines (10 loc) • 1.14 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 32 24" fill="none" height={size} width={size} {...otherProps}>
<Path d="M28 2.31785H24.346L22.436 7.75326L20.4429 2.31785H16.7059V10.7812L12.8858 2.31785H9.81328L5.99313 10.9649H8.65047L9.39787 9.23561H13.3841L14.1315 10.9649H19.1142V4.95307L21.3564 10.9649H23.4325L25.6746 4.95307V10.9649H28V12.2825H24.9272L22.436 15.0002L19.8616 12.2825H9.31493V20.9296H19.7787L22.3528 18.1297L24.9272 20.9296H28V22H24.346L22.3528 19.859L20.3597 22H7.98626V12.1178H4L8.9827 1H13.7993L15.5431 4.78834V1H21.5225L22.519 3.88244L23.5156 1H28V2.31785ZM28 14.1766L25.7578 16.5648L28 18.9531V20.9296L23.9308 16.5648L28 12.2825V14.1766ZM16.7059 20.9296V18.8708H11.7232V17.5532H16.6227V15.5767H11.7232V14.2591H16.7059V12.2825L20.8581 16.5648L16.7059 20.9296ZM10.1453 7.34131L11.3081 4.54136L12.4706 7.34131H10.1453Z" fill="#006FCF" fillRule="evenodd" clipRule="evenodd"/>
</Svg>);
};
Icon.displayName = 'AmexLogo';
export const AmexLogo = memo(Icon);