@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 548 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 CheckBoldIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M9,20.42L2.79,14.21L5.62,11.38L9,14.77L18.88,4.88L21.71,7.71L9,20.42Z' />
</Svg>
)
CheckBoldIcon.displayName = 'CheckBoldIcon'
CheckBoldIcon.defaultProps = {
size: 24
}
export default CheckBoldIcon