@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
11 lines (10 loc) • 515 B
TypeScript
import React from "react";
import { OverviewItemActionsProps } from "./../OverviewItem/OverviewItemActions";
export type CardOptionsProps = Omit<OverviewItemActionsProps, "hiddenInteractions">;
/**
* Container for elements that allow user-interaction, e.g. buttons or context menus.
* Can contain multiple of them.
* Is displayed right-aligned in the `CardHeader`.
*/
export declare const CardOptions: ({ children, className, ...otherProps }: CardOptionsProps) => React.JSX.Element;
export default CardOptions;