Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 2x | import * as React from 'react'; import { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } const SvgIconCoinInHand = ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => ( <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' aria-labelledby={titleId} {...props}> {title ? <title id={titleId}>{title}</title> : null} <path d='M13 1c-2.753 0-5 2.247-5 5s2.247 5 5 5c2.752 0 5-2.247 5-5s-2.248-5-5-5m0 1.5c1.942 0 3.5 1.558 3.5 3.5S14.942 9.5 13 9.5A3.49 3.49 0 0 1 9.5 6c0-1.942 1.558-3.5 3.5-3.5m-.008.76a.5.5 0 0 0-.492.507v.277a1.21 1.21 0 0 0-.917 1.163 1.22 1.22 0 0 0 1.229 1.209h.459c.218 0 .395.169.395.375a.386.386 0 0 1-.396.375h-.193a.5.5 0 0 0-.157 0h-.241a.63.63 0 0 1-.42-.153.417.417 0 0 0-.689.468c.15.226.508.443.93.497v.255a.499.499 0 1 0 1 0v-.255c.568-.106 1-.598 1-1.187a1.22 1.22 0 0 0-1.229-1.208h-.459a.387.387 0 0 1-.396-.375c0-.206.178-.375.396-.375h.096a.5.5 0 0 0 .177 0h.165c.209 0 .308.132.313.138a.416.416 0 1 0 .707-.442 1.2 1.2 0 0 0-.77-.505v-.257a.5.5 0 0 0-.508-.507m7.815 7.75c-.56.005-1.092.227-1.565.578-.507.377-2.033 1.516-3.353 2.502-.287-.914-1.136-1.59-2.139-1.59h-2.196c-1.406 0-2.061-.114-2.624-.233S7.823 12 6.913 12c-1.942 0-3.407 1.246-4.366 2.396-.96 1.148-1.48 2.296-1.48 2.296a.75.75 0 1 0 1.366.622s.45-.98 1.265-1.957C4.514 14.38 5.63 13.5 6.913 13.5c.76 0 1.09.103 1.705.233s1.444.267 2.936.267h2.196c.423 0 .75.327.75.75a.74.74 0 0 1-.285.589l-.042.035-.001.001a.76.76 0 0 1-.422.125h-3.5a.751.751 0 1 0 0 1.5h3.5c.47 0 .908-.15 1.27-.4l.002-.001a1 1 0 0 0 .09-.058s4.276-3.193 5.025-3.749v-.001c.282-.21.518-.28.683-.281s.29.039.46.21a.736.736 0 0 1 .006 1.047c-2.678 2.251-4.362 3.751-5.475 4.63-1.126.89-1.598 1.103-2.061 1.103-1.826 0-3.85-.5-6-.5-1.25 0-2.129.672-2.6 1.3-.47.628-.628 1.268-.628 1.268a.75.75 0 1 0 1.456.364s.093-.36.372-.732.65-.7 1.4-.7c1.904 0 3.918.5 6 .5.951 0 1.792-.478 2.991-1.425 1.184-.935 2.847-2.42 5.508-4.658a1 1 0 0 0 .092-.076q.003-.006.008-.012l.002.002.026-.027a.75.75 0 0 0 .165-.267c.623-.876.582-2.095-.201-2.878a2.17 2.17 0 0 0-1.534-.65' /> </svg> ); export default SvgIconCoinInHand; |