@vtex/styleguide
Version:
> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))
14 lines (13 loc) • 383 B
TypeScript
import { FC } from 'react';
import { Alignment } from './PopoverMenu';
declare const ButtonDensity: FC<ButtonDensityProps>;
export declare type ButtonDensityProps = {
label: string;
compactLabel: string;
regularLabel: string;
comfortableLabel: string;
handleCallback?: Function;
alignMenu?: Alignment;
disabled?: boolean;
};
export default ButtonDensity;