12345678910111213141516171819202122 |
- import React from 'react';
- import SvgIcon from './svgIcon';
- type Props = React.ComponentProps<typeof SvgIcon>;
- const IconEllipsis = React.forwardRef(function IconEllipsis(
- props: Props,
- ref: React.Ref<SVGSVGElement>
- ) {
- return (
- <SvgIcon {...props} ref={ref}>
- <circle cx="8" cy="8" r="1.31" />
- <circle cx="1.31" cy="8" r="1.31" />
- <circle cx="14.69" cy="8" r="1.31" />
- </SvgIcon>
- );
- });
- IconEllipsis.displayName = 'IconEllipsis';
- export {IconEllipsis};
|