UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

44 lines 1.15 kB
/// <reference types="react" /> import { IIconProps } from '../Icon'; import { Color } from '../Icon'; interface IDotsIconProps extends IIconProps { direction?: 'vertical' | 'horizontal'; } export declare const DotsIcon: { ({ className, direction, color, ...passThroughs }: IDotsIconProps): JSX.Element; displayName: string; peek: { description: string; categories: string[]; extend: string; madeFrom: string[]; }; propTypes: { direction: any; className: any; size: any; width: any; height: any; viewBox: any; aspectRatio: any; isClickable: any; isDisabled: any; onClick: any; onSelect: any; children: any; color: any; }; defaultProps: { direction: string; size: number; aspectRatio: string; viewBox: string; isDisabled: boolean; isClickable: boolean; color: Color; onClick: (...args: any[]) => void; onSelect: (...args: any[]) => void; }; }; export default DotsIcon; //# sourceMappingURL=DotsIcon.d.ts.map