@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 726 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 CreditCardRefundIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M18,11H6C4.9,11 4,11.9 4,13V21C4,22.1 4.9,23 6,23H18C19.1,23 20,22.1 20,21V13C20,11.9 19.1,11 18,11M18,21H6V17H18V21M18,15H6V13H18V15M17,5V10H15.5V6.5H9.88L12.3,8.93L11.24,10L7,5.75L11.24,1.5L12.3,2.57L9.88,5H17Z' />
</Svg>
)
CreditCardRefundIcon.displayName = 'CreditCardRefundIcon'
CreditCardRefundIcon.defaultProps = {
size: 24
}
export default CreditCardRefundIcon