@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 564 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 BulletIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M14,22H10V21H14V22M13,10V7H11V10L10,11.5V20H14V11.5L13,10M12,2C12,2 11,3 11,5V6H13V5C13,5 13,3 12,2Z' />
</Svg>
)
BulletIcon.displayName = 'BulletIcon'
BulletIcon.defaultProps = {
size: 24
}
export default BulletIcon