@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 627 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 CardsSpadeIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,2C9,7 4,9 4,14C4,16 6,18 8,18C9,18 10,18 11,17C11,17 11.32,19 9,22H15C13,19 13,17 13,17C14,18 15,18 16,18C18,18 20,16 20,14C20,9 15,7 12,2Z' />
</Svg>
)
CardsSpadeIcon.displayName = 'CardsSpadeIcon'
CardsSpadeIcon.defaultProps = {
size: 24
}
export default CardsSpadeIcon