2020-02-25 16:04:44 +00:00
|
|
|
const CircleIcon = ({
|
|
|
|
className = '',
|
2020-04-23 07:13:29 +01:00
|
|
|
size = '16px',
|
2020-02-25 16:04:44 +00:00
|
|
|
title = '',
|
|
|
|
}) => (
|
2020-03-14 17:31:29 +00:00
|
|
|
<svg
|
|
|
|
className={className}
|
|
|
|
version='1.1'
|
|
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
|
|
x='0px'
|
|
|
|
y='0px'
|
2020-04-23 07:13:29 +01:00
|
|
|
width={size}
|
|
|
|
height={size}
|
|
|
|
viewBox='0 0 48 48'
|
2020-03-14 17:31:29 +00:00
|
|
|
xmlSpace='preserve'
|
|
|
|
aria-label={title}
|
|
|
|
>
|
|
|
|
<g>
|
|
|
|
<circle cx='24' cy='24' r='20' />
|
|
|
|
</g>
|
|
|
|
</svg>
|
|
|
|
)
|
2020-02-25 16:04:44 +00:00
|
|
|
|
|
|
|
export default CircleIcon
|