mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
Most simple components created
This commit is contained in:
25
lib/types/Tab.d.ts
vendored
Normal file
25
lib/types/Tab.d.ts
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user