@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 569 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 CallMergeIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M17,20.41L18.41,19L15,15.59L13.59,17M7.5,8H11V13.59L5.59,19L7,20.41L13,14.41V8H16.5L12,3.5' />
</Svg>
)
CallMergeIcon.displayName = 'CallMergeIcon'
CallMergeIcon.defaultProps = {
size: 24
}
export default CallMergeIcon