This repository was archived by the owner on Sep 26, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
packages/svelte-materialify/@types Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ import { SvelteComponent } from './shared' ;
2+
3+ interface FooterProps {
4+ /** Classes added to the footer. */
5+ class ?: string ;
6+
7+ /** Position the footer absolutely at the bottom of its parent container. */
8+ absolute ?: boolean ;
9+
10+ /** Removes all default padding from the footer component. */
11+ paddless ?: boolean ;
12+
13+ /** Prevent the footer from being as large as its container when the absolute prop is present. */
14+ inset ?: boolean ;
15+
16+ /** Fix footer at the bottom of its parent container. */
17+ fixed ?: boolean ;
18+
19+ /** Styles to add to the footer. */
20+ style ?: string ;
21+ }
22+
23+ declare class Footer extends SvelteComponent < FooterProps > { }
24+
25+ export default Footer ;
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export { default as Dialog } from './Dialog';
2222export { default as Divider } from './Divider' ;
2323export { default as ExpansionPanel } from './ExpansionPanel' ;
2424export { default as ExpansionPanels } from './ExpansionPanels' ;
25+ export { default as Footer } from './Footer' ;
2526export { default as Icon } from './Icon' ;
2627export { default as Input } from './Input' ;
2728export { default as ItemGroup } from './ItemGroup' ;
You can’t perform that action at this time.
0 commit comments