@octopusdeploy/design-system-components
Version:
The design systems component library.
9 lines (8 loc) • 386 B
TypeScript
import type { ReactNode } from "react";
export interface AdvancedFilterPanelProps {
content: ReactNode;
onResetFilter: () => void;
isResetEnabled: boolean;
parentOrientation: "row" | "column";
}
export declare function AdvancedFilterPanel({ content, onResetFilter, isResetEnabled, parentOrientation }: AdvancedFilterPanelProps): import("react/jsx-runtime").JSX.Element;