import { ActionsContainer } from '@components/theme/action/Actions';
import List from '@components/theme/list/List';
import ListHead from '@components/theme/list/ListHead';
import { PanelContent } from '@components/theme/panel/Panel';
import { ListHeadProps, ListProps } from '@lib/plume-admin-theme/list/ListProps';
import { PropsWithChildren } from 'react';
import scss from './search-layout.module.scss';
export function SearchLayout({ children }: PropsWithChildren<{}>) {
return {children};
}
export function SearchHead({ children }: PropsWithChildren<{}>) {
return
{children}
;
}
export function SearchInput({ children }: PropsWithChildren<{}>) {
return {children}
;
}
export function SearchActions({ children }: PropsWithChildren<{}>) {
return {children};
}
export function SearchDisplay({ children }: PropsWithChildren<{}>) {
return {children}
;
}
export function SearchDisplayFilters({ children }: PropsWithChildren<{}>) {
return {children}
;
}
export function SearchResults({ children }: PropsWithChildren<{}>) {
return {children}
;
}
export function SearchResultsHead({
title,
children,
isLoading,
}: Omit) {
return (
{children}
);
}
export function SearchResultsList({
children,
isEmpty,
isLoading,
showLoader,
emptyStateLabel,
}: Omit) {
return (
{children}
);
}
export function SearchResultsActions({ children }: PropsWithChildren<{}>) {
return (
{children}
);
}