@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 569 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 EthereumIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,1.75L5.75,12.25L12,16L18.25,12.25L12,1.75M5.75,13.5L12,22.25L18.25,13.5L12,17.25L5.75,13.5Z' />
</Svg>
)
EthereumIcon.displayName = 'EthereumIcon'
EthereumIcon.defaultProps = {
size: 24
}
export default EthereumIcon