@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 690 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 RhombusMediumIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M17.23,11.34L12.68,6.79C12.3,6.4 11.75,6.4 11.36,6.79L6.81,11.34C6.42,11.73 6.42,12.28 6.81,12.66L11.36,17.21C11.75,17.6 12.3,17.6 12.68,17.21L17.23,12.66C17.56,12.27 17.56,11.73 17.23,11.34Z' />
</Svg>
)
RhombusMediumIcon.displayName = 'RhombusMediumIcon'
RhombusMediumIcon.defaultProps = {
size: 24
}
export default RhombusMediumIcon