DONE: Dividers, Badges, disable elevation state for FABS
FIXED: Checkboxes, toggled icon-button style
This commit is contained in:
parent
40331e8659
commit
bfc27494a7
|
@ -1,8 +1,8 @@
|
|||
import React, {ForwardedRef, forwardRef, PropsWithChildren} from 'react';
|
||||
|
||||
interface DividerProps extends PropsWithChildren<any> {
|
||||
orientation: "vertical" | "horizontal";
|
||||
variant: "full-width" | "inset" | "middle-inset";
|
||||
orientation?: "vertical" | "horizontal";
|
||||
variant?: "full-width" | "inset" | "middle-inset";
|
||||
}
|
||||
|
||||
const Divider = forwardRef(function Divider({orientation, variant, ...props} : DividerProps, ref : ForwardedRef<any>) {
|
||||
|
|
Loading…
Reference in New Issue