---
title: Group
description: Used to group and attach elements together
links:
source: components/group
storybook: components-group--basic
---
## Usage
```jsx
import { Group } from "@chakra-ui/react"
```
```jsx
```
## Examples
### Button
Here's an example of using the `Group` component to group buttons together.
### Attached
Use the `attached` prop to attach the children together.
**Note:** When composing custom components and attaching them to a `Group`,
ensure you forward props.
```tsx {10} /{...props}/
export const Demo = () => {
return (
Two
)
}
function FocusButton(props: ButtonProps) {
return (
)
}
```
### Grow
Use the `grow` prop to make the children grow to fill the available space.
## Props