diff --git a/dist/components/Divider.d.ts b/dist/components/Divider.d.ts index d239be0..f3e7d97 100644 --- a/dist/components/Divider.d.ts +++ b/dist/components/Divider.d.ts @@ -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 `
` element, but it's fancier. */ export declare function Divider(props: Props): import("react/jsx-runtime").JSX.Element; export {}; diff --git a/package.json b/package.json index 2ad7bf1..d53d991 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tgui-core", - "version": "1.5.2", + "version": "1.5.3", "description": "TGUI core component library", "keywords": ["TGUI", "library", "typescript"], "files": ["dist"],