16 lines
499 B
TypeScript
16 lines
499 B
TypeScript
|
|
// React Imports
|
||
|
|
import type { SVGAttributes } from 'react'
|
||
|
|
|
||
|
|
const RadioCircle = (props: SVGAttributes<SVGElement>) => {
|
||
|
|
return (
|
||
|
|
<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' fontSize='1.5rem' viewBox='0 0 24 24' {...props}>
|
||
|
|
<path
|
||
|
|
fill='currentColor'
|
||
|
|
d='M5 12c0 3.859 3.14 7 7 7 3.859 0 7-3.141 7-7s-3.141-7-7-7c-3.86 0-7 3.141-7 7zm12 0c0 2.757-2.243 5-5 5s-5-2.243-5-5 2.243-5 5-5 5 2.243 5 5z'
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default RadioCircle
|