@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 571 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 DogSideIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M19,3L15,7L18,10L19,9L20,10L22,8L19,5V3M3,7L2,8L5,11V14L4,15V21H6V18L8,15H15V21H17V11L14,8L13,9H5L3,7Z' />
</Svg>
)
DogSideIcon.displayName = 'DogSideIcon'
DogSideIcon.defaultProps = {
size: 24
}
export default DogSideIcon