feat(tabs): support "container" type for TabsSkeleton

This commit is contained in:
Eric Y Liu 2021-03-18 15:51:17 -07:00
commit 70a3b79ed3
5 changed files with 40 additions and 15 deletions

View file

@ -8,6 +8,12 @@ export interface TabsSkeletonProps
* @default 4
*/
count?: number;
/**
* Specify the type of tabs
* @default "default"
*/
type?: "default" | "container";
}
export default class TabsSkeleton extends SvelteComponentTyped<