1 | import * as React from 'react';
|
2 | export interface SidebarPanelProps extends Omit<React.HTMLProps<HTMLDivElement>, 'width'> {
|
3 | children: React.ReactNode;
|
4 |
|
5 | variant?: 'default' | 'sticky' | 'static';
|
6 |
|
7 | hasNoBackground?: boolean;
|
8 |
|
9 | width?: {
|
10 | default?: 'default' | 'width_25' | 'width_33' | 'width_50' | 'width_66' | 'width_75' | 'width_100';
|
11 | sm?: 'default' | 'width_25' | 'width_33' | 'width_50' | 'width_66' | 'width_75' | 'width_100';
|
12 | md?: 'default' | 'width_25' | 'width_33' | 'width_50' | 'width_66' | 'width_75' | 'width_100';
|
13 | lg?: 'default' | 'width_25' | 'width_33' | 'width_50' | 'width_66' | 'width_75' | 'width_100';
|
14 | xl?: 'default' | 'width_25' | 'width_33' | 'width_50' | 'width_66' | 'width_75' | 'width_100';
|
15 | '2xl'?: 'default' | 'width_25' | 'width_33' | 'width_50' | 'width_66' | 'width_75' | 'width_100';
|
16 | };
|
17 | }
|
18 | export declare const SidebarPanel: React.FunctionComponent<SidebarPanelProps>;
|
19 |
|
\ | No newline at end of file |