gather-content-ui
Version:
GatherContent UI Library
17 lines • 593 B
TypeScript
import { HTMLAttributes } from "react";
interface Props extends HTMLAttributes<HTMLDivElement> {
collapse?: boolean;
horizontal?: boolean;
bordered?: boolean;
}
declare function DropdownActionGroup({ children, horizontal, className, bordered, collapse, ...rest }: Props): import("react/jsx-runtime").JSX.Element;
declare namespace DropdownActionGroup {
var defaultProps: {
horizontal: boolean;
bordered: boolean;
collapse: boolean;
className: string;
};
}
export default DropdownActionGroup;
//# sourceMappingURL=DropdownActionGroup.d.ts.map