@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 575 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 CheckUnderlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M21,5L9,17L3.5,11.5L4.91,10.09L9,14.17L19.59,3.59L21,5M3,21V19H21V21H3Z' />
</Svg>
)
CheckUnderlineIcon.displayName = 'CheckUnderlineIcon'
CheckUnderlineIcon.defaultProps = {
size: 24
}
export default CheckUnderlineIcon