diff --git a/package.json b/package.json index fe4befed..9d5368cb 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "publishConfig": { "registry": "https://registry.npmjs.org" }, - "version": "1.0.122", + "version": "1.0.123", "description": "Formation is a comprehensive component library powered by React, Styled Components, and CSS variables for creating apps and websites that demand responsive, unified cross-platform experiences.", "resolutions": { "string-width": "^4", diff --git a/src/components/GroupRadius/GroupRadius.tsx b/src/components/GroupRadius/GroupRadius.tsx index 2dc4cce7..ecc9613f 100644 --- a/src/components/GroupRadius/GroupRadius.tsx +++ b/src/components/GroupRadius/GroupRadius.tsx @@ -9,6 +9,7 @@ import styled from 'styled-components' * * @component * @param {boolean} [expand] - If true, the component will expand to fill the width of its container; otherwise, it will fit to the content width. + * @param {React.ReactNode} children - The child elements to be grouped within the container. * * @example * // GroupRadius component with full width @@ -27,6 +28,7 @@ import styled from 'styled-components' export const GroupRadius = React.memo(styled.div<{ expand?: boolean + children: React.ReactNode }>` display: flex; gap: 1px; @@ -36,4 +38,4 @@ export const GroupRadius = React.memo(styled.div<{ * { border-radius: 0 !important; } -`) \ No newline at end of file +`)