@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 622 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 TrademarkIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M9.8,8.44H6.87V16H4.89V8.44H2V7H9.8V8.44M13.5,7L15.96,13.5L18.41,7H21V16H19V13.5L19.22,9.24L16.63,16H15.28L12.7,9.25L12.9,13.5V16H10.93V7H13.5Z' />
</Svg>
)
TrademarkIcon.displayName = 'TrademarkIcon'
TrademarkIcon.defaultProps = {
size: 24
}
export default TrademarkIcon