@vtex/admin-ui
Version:
> VTEX admin component library
10 lines (9 loc) • 324 B
TypeScript
import type { ReactNode } from 'react';
import type { SystemComponentProps } from '../types';
export declare function FilterGroup(props: FilterGroupProps): JSX.Element;
export interface FilterGroupProps extends SystemComponentProps<{}> {
children?: ReactNode;
state: {
onClear: () => void;
};
}