@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 628 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 CurrencyGbpIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M6,21V19C10,17 9.5,13 9.5,13H7V11H9.5C8.5,6.5 10,3 14,3C16,3 17,3.5 17,3.5V5.5C11,3.5 11,8 11.5,11H16V13H11.5C11.5,13 12,17 9.5,19H18V21H6Z' />
</Svg>
)
CurrencyGbpIcon.displayName = 'CurrencyGbpIcon'
CurrencyGbpIcon.defaultProps = {
size: 24
}
export default CurrencyGbpIcon