wakuconnect-chat-sdk/packages/icons/src/fullscreen-mac-os-icon.tsx

29 lines
594 B
TypeScript
Raw Normal View History

import { createIcon } from '../lib/create-icon'
const SvgFullscreenMacOsIcon = 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}
>
<circle cx={10} cy={10} r={6} fill="#23ADA0" />
<circle
cx={10}
cy={10}
r={5.4}
stroke="#1B273D"
strokeOpacity={0.1}
strokeWidth={1.2}
/>
</svg>
)
})
export default SvgFullscreenMacOsIcon