UNPKG

box-ui-elements-mlh

Version:
27 lines (22 loc) 754 B
// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import type { Icon } from '../flowTypes'; const IconEllipsis = ({ className = '', color = '#000000', height = 20, title, width = 20 }: Icon) => ( <AccessibleSVG className={`icon-ellipsis ${className}`} height={height} title={title} viewBox="0 0 10 2" width={width} > <path className="fill-color" d="M1 2c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1zm8 0c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1zM5 2c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1z" fill={color} fillRule="evenodd" /> </AccessibleSVG> ); export default IconEllipsis;