mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 14:13:58 -05:00
26 lines
466 B
TypeScript
26 lines
466 B
TypeScript
export interface TabGroupContent {
|
|
tab: React.ReactNode;
|
|
content: React.ReactNode;
|
|
}
|
|
|
|
export interface MattrixwvTabGroupProps {
|
|
tabs: TabGroupContent[];
|
|
className?: string;
|
|
}
|
|
|
|
export interface MattrixwvTabListProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export interface MattrixwvTabProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export interface MattrixwvTabPanelsProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export interface MattrixwvTabPanelProps {
|
|
children: React.ReactNode;
|
|
}
|