@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 671 B
JavaScript
import React from 'react'
import styled from 'styled-components'
import { space, color } from 'styled-system'
const Svg = styled('svg')({ flex: 'none' }, space, color)
const CiscoWebexIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,3C16.97,3 21,7.03 21,12C21,16.97 16.97,21 12,21C7.03,21 3,16.97 3,12C3,7.03 7.03,3 12,3M5.94,8.5C4,11.85 5.15,16.13 8.5,18.06C11.85,20 18.85,7.87 15.5,5.94C12.15,4 7.87,5.15 5.94,8.5Z' />
</Svg>
)
CiscoWebexIcon.displayName = 'CiscoWebexIcon'
CiscoWebexIcon.defaultProps = {
size: 24
}
export default CiscoWebexIcon