This repository was archived by the owner on Sep 26, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
packages/svelte-materialify Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change
1
+ import { SvelteComponent } from './shared' ;
2
+
3
+ export interface TabContentProps {
4
+ class ?: string ;
5
+ style ?: string ;
6
+ }
7
+
8
+
9
+ declare class TabContent extends SvelteComponent < TabContentProps > { }
10
+
11
+ export default TabContent ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export { default as Subheader } from './Subheader';
44
44
export { default as Switch } from './Switch' ;
45
45
export { default as Tab } from './Tab' ;
46
46
export { default as Tabs } from './Tabs' ;
47
- export { default as TabsContent } from './TabsContent ' ;
47
+ export { default as TabContent } from './TabContent ' ;
48
48
export { default as Textarea } from './Textarea' ;
49
49
export { default as TextField } from './TextField' ;
50
50
export { default as Tooltip } from './Tooltip' ;
Original file line number Diff line number Diff line change 3
3
4
4
let klass = ' ' ;
5
5
export { klass as class };
6
- export let style = null ;
6
+ export let style = " " ;
7
7
</script >
8
8
9
9
<div class ="s-tab-content {klass }" role ="tabpanel" {style }>
You can’t perform that action at this time.
0 commit comments