UNPKG

box-ui-elements-mlh

Version:
16 lines (11 loc) 522 B
// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import type { Icon } from '../flowTypes'; const IconPlay = ({ className = '', color = '#000000', height = 24, title, width = 24 }: Icon) => ( <AccessibleSVG className={`icon-play ${className}`} height={height} title={title} viewBox="0 0 24 24" width={width}> <path className="fill-color" d="M8 5v14l11-7z" fill={color} /> <path d="M0 0h24v24H0z" fill="none" /> </AccessibleSVG> ); export default IconPlay;