mirror of
https://github.com/status-im/dappconnect-chat-sdk.git
synced 2025-02-03 01:54:06 +00:00
6558e437f5
* remove old icons * add script for syncing icons * regenerate icons * update @status-im/icons exports * allow scroll in storybook * migrate to new icons import * add iconography story * update root package.json * fix typo * add @status-im/colors * generate colors * add colors story * fix ci
33 lines
752 B
XML
33 lines
752 B
XML
import { createIcon } from '../lib/create-icon'
|
|
|
|
const SvgCircleIcon = createIcon(props => {
|
|
return (
|
|
<svg
|
|
{...props}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props.width}
|
|
height={props.height}
|
|
fill="none"
|
|
viewBox="0 0 20 20"
|
|
focusable={false}
|
|
aria-hidden={true}
|
|
>
|
|
<path
|
|
fill="#2A4AF5"
|
|
fillRule="evenodd"
|
|
d="M10 3.2a6.8 6.8 0 1 0 0 13.6 6.8 6.8 0 0 0 0-13.6ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
<path
|
|
fill="#2A4AF5"
|
|
fillRule="evenodd"
|
|
d="M10 3.2a6.8 6.8 0 1 0 0 13.6 6.8 6.8 0 0 0 0-13.6Z"
|
|
clipRule="evenodd"
|
|
opacity={0.4}
|
|
/>
|
|
</svg>
|
|
)
|
|
})
|
|
|
|
export default SvgCircleIcon
|