reablocks
Version:
Component library for React
23 lines (21 loc) • 635 B
TypeScript
import { CommandPaletteTheme } from '../CommandPaletteTheme';
import { default as React, PropsWithChildren } from 'react';
export interface CommandPaletteSectionProps extends PropsWithChildren {
/**
* Section title.
*/
title?: string;
/**
* Additional class name.
*/
className?: string;
/**
* Section stack index. Set internally.
*/
index?: number;
/**
* Theme for the CommandPalette.
*/
theme?: CommandPaletteTheme;
}
export declare const CommandPaletteSection: React.ForwardRefExoticComponent<CommandPaletteSectionProps & React.RefAttributes<HTMLDivElement>>;