@cbinsights/fds
Version:
Form: A design system by CB Insights
14 lines (13 loc) • 531 B
TypeScript
import React from 'react';
export interface DropdownButtonProps {
/** content rendered to the left of the carat */
children?: React.ReactNode;
/** Controls disabled state of dropdown button */
disabled?: boolean;
/** Controls the button going full width */
isFullWidth?: boolean;
/** Controls active state of dropdown */
isActive?: boolean;
}
declare const DropdownButton: React.ForwardRefExoticComponent<DropdownButtonProps & React.RefAttributes<HTMLButtonElement>>;
export default DropdownButton;