metadata-based-explorer1
Version:
Box UI Elements
34 lines (29 loc) • 955 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
type Props = {
className?: string,
color?: string,
height?: number,
/** A text-only string describing the icon if it's not purely decorative for accessibility */
title?: string | React.Element<any>,
width?: number,
};
const IconEllipsis = ({ className = '', color = '#000000', height = 20, title, width = 20 }: Props) => (
<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;