-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f1de5f
commit e91fa9a
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
type Props = Partial<{ | ||
/** Removes the line, simply adding a gap. */ | ||
/** Divider can divide content without creating a dividing line. */ | ||
hidden: boolean; | ||
/** Rotate the divider to vertical. */ | ||
/** Divide content vertically. */ | ||
vertical: boolean; | ||
}>; | ||
/** | ||
* | ||
* ## Dimmer | ||
* Dims surrounding area to emphasize content placed inside. | ||
* | ||
* Content is automatically centered inside the dimmer. | ||
* ## Divider | ||
* Draws a horizontal or vertical line, dividing a section into groups. | ||
* Works like the good old `<hr>` element, but it's fancier. | ||
*/ | ||
export declare function Divider(props: Props): import("react/jsx-runtime").JSX.Element; | ||
export {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters