UNPKG

onecart-ui

Version:

OneCart UI: Cross-platform design tokens + React & React Native components

10 lines (9 loc) 972 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const WhereToVote = ({ size = 'md', color = 'currentColor', style, }) => { const sizeMap = { xs: 16, sm: 20, md: 24, lg: 32, xl: 40 }; const iconSize = typeof size === 'number' ? size : sizeMap[size]; return (React.createElement(Svg, { width: iconSize, height: iconSize, viewBox: "0 0 24 24", fill: "none", style: style }, React.createElement(Path, { d: "M9.114 2.000C5.193 2.000 2.000 5.193 2.000 9.114C2.000 14.068 8.189 20.977 8.456 21.271L9.114 22.000L9.772 21.271C10.039 20.977 16.229 14.068 16.229 9.114C16.229 5.193 13.036 2.000 9.114 2.000ZM9.114 19.314C7.176 16.993 3.779 12.262 3.779 9.114C3.779 6.171 6.171 3.779 9.114 3.779C12.058 3.779 14.450 6.171 14.450 9.114C14.450 12.520 10.671 17.438 9.114 19.314ZM7.754 11.044L6.189 9.470L4.926 10.733L7.754 13.561L13.098 8.216L11.844 6.953L7.754 11.044Z", fill: color }))); }; WhereToVote.displayName = 'WhereToVote';