UNPKG

@lessondesk/material-icons

Version:

Material Icon SVGs as React Components

28 lines (23 loc) 614 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 RadioAmIcon = ({ size, ...props }) => ( <Svg {...props} viewBox='0 0 24 24' width={size} height={size} fill='currentcolor' > <path d='M5,7C3.9,7 3,7.9 3,9V17H5V13H7V17H9V9C9,7.9 8.1,7 7,7H5M5,9H7V11H5V9M13,7C11.9,7 11,7.9 11,9V17H13V9H15V16H17V9H19V17H21V9C21,7.9 20.1,7 19,7H13Z' /> </Svg> ) RadioAmIcon.displayName = 'RadioAmIcon' RadioAmIcon.defaultProps = { size: 24 } export default RadioAmIcon