@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 539 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 VuejsIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M2,3H5.5L12,15L18.5,3H22L12,21L2,3M6.5,3H9.5L12,7.58L14.5,3H17.5L12,13.08L6.5,3Z' />
</Svg>
)
VuejsIcon.displayName = 'VuejsIcon'
VuejsIcon.defaultProps = {
size: 24
}
export default VuejsIcon