@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
27 lines (26 loc) • 2.85 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path, Rect, Defs, ClipPath } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 40 40" fill="none" height={size} width={size} {...otherProps}>
<G clipPath="url(#clip0_51_186)">
<Path d="M20 39.9999C31.0457 39.9999 40 31.0456 40 19.9999C40 8.95418 31.0457 -0.00012207 20 -0.00012207C8.95431 -0.00012207 0 8.95418 0 19.9999C0 31.0456 8.95431 39.9999 20 39.9999Z" fill="#F0F0F0"/>
<Path d="M19.1309 20H40.0004C40.0004 18.1949 39.7598 16.4461 39.3114 14.7826H19.1309V20Z" fill="#D80027"/>
<Path d="M19.1309 9.5652H37.0649C35.8406 7.56739 34.2752 5.80153 32.4501 4.34778H19.1309V9.5652Z" fill="#D80027"/>
<Path d="M20.0005 40C24.7074 40 29.0337 38.3732 32.4501 35.6522H7.55078C10.9672 38.3732 15.2935 40 20.0005 40Z" fill="#D80027"/>
<Path d="M2.93594 30.4347H37.065C38.0479 28.8309 38.8102 27.0778 39.3115 25.2173H0.689453C1.19078 27.0778 1.95305 28.8309 2.93594 30.4347V30.4347Z" fill="#D80027"/>
<Path d="M9.26437 3.12316H11.087L9.39164 4.3548L10.0392 6.34769L8.34398 5.11605L6.64875 6.34769L7.20812 4.62605C5.71547 5.86941 4.40719 7.32613 3.32906 8.94925H3.91305L2.83391 9.73324C2.66578 10.0137 2.50453 10.2986 2.35 10.5878L2.86531 12.1738L1.90391 11.4753C1.66492 11.9816 1.44633 12.4993 1.24984 13.0278L1.81758 14.7753H3.91305L2.21773 16.007L2.86531 17.9999L1.17008 16.7682L0.154609 17.506C0.0529687 18.3231 0 19.1553 0 19.9999H20C20 8.95425 20 7.65207 20 -0.00012207C16.0491 -0.00012207 12.366 1.14597 9.26437 3.12316V3.12316ZM10.0392 17.9999L8.34398 16.7682L6.64875 17.9999L7.29633 16.007L5.60102 14.7753H7.69648L8.34398 12.7825L8.99148 14.7753H11.087L9.39164 16.007L10.0392 17.9999ZM9.39164 10.1809L10.0392 12.1738L8.34398 10.9421L6.64875 12.1738L7.29633 10.1809L5.60102 8.94925H7.69648L8.34398 6.95636L8.99148 8.94925H11.087L9.39164 10.1809ZM17.2131 17.9999L15.5179 16.7682L13.8227 17.9999L14.4702 16.007L12.7749 14.7753H14.8704L15.5179 12.7825L16.1654 14.7753H18.2609L16.5655 16.007L17.2131 17.9999ZM16.5655 10.1809L17.2131 12.1738L15.5179 10.9421L13.8227 12.1738L14.4702 10.1809L12.7749 8.94925H14.8704L15.5179 6.95636L16.1654 8.94925H18.2609L16.5655 10.1809ZM16.5655 4.3548L17.2131 6.34769L15.5179 5.11605L13.8227 6.34769L14.4702 4.3548L12.7749 3.12316H14.8704L15.5179 1.13027L16.1654 3.12316H18.2609L16.5655 4.3548Z" fill="#0052B4"/>
</G>
<Defs>
<ClipPath id="clip0_51_186">
<Rect width="40" height="40" fill="white"/>
</ClipPath>
</Defs>
</Svg>);
};
Icon.displayName = 'UnitedStates';
/**
* Flags by `Deji.Zeal`: United States
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const UnitedStates = memo(Icon);