UNPKG

@lessondesk/material-icons

Version:

Material Icon SVGs as React Components

28 lines (23 loc) 710 B
import React from 'react' import styled from 'styled-components' import { space, color } from 'styled-system' const Svg = styled('svg')({ flex: 'none' }, space, color) const GamepadRoundUpIcon = ({ size, ...props }) => ( <Svg {...props} viewBox='0 0 24 24' width={size} height={size} fill='currentcolor' > <path d='M4,8H8V4C8,2.9 8.9,2 10,2H14C15.1,2 16,2.9 16,4V8H20C21.1,8 22,8.9 22,10V14C22,15.1 21.1,16 20,16H16V20C16,21.1 15.1,22 14,22H10C8.9,22 8,21.1 8,20V16H4C2.9,16 2,15.1 2,14V10C2,8.9 2.9,8 4,8M10,4V8H14V4H10Z' /> </Svg> ) GamepadRoundUpIcon.displayName = 'GamepadRoundUpIcon' GamepadRoundUpIcon.defaultProps = { size: 24 } export default GamepadRoundUpIcon