Button Group

Card Header Group

An action group in a card header that folds by the card's own width: the threshold comes from a container query, not from the viewport.

  • buttongroup
  • card
  • container-query
  • header

Preview

1440pxHost theme

Use it with AI

  1. 1. Copy the link.
  2. 2. Write to your agent in your own words and drop the link into the sentence.
  3. 3. The agent opens the link and installs the component from the registry.

put this in the header: https://vibeui.ru/c/buttongroup-034?lang=en

Sales reportОбновлён 12 минут назад

За неделю 128 заказов на 1 240 000 ₽. Средний чек вырос на 4 % по сравнению с прошлой неделей.

Show the full instructions

What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.

# Install and place "buttongroup-034" (Card Header Group) from VibeUI

## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/buttongroup-034.json

Registry item: https://vibeui.ru/r/buttongroup-034.json
Installs to: components/vibeui/buttongroup-034.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.

Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.

## 2. What it is
An action group in a card header that folds by the card's own width: the threshold comes from a container query, not from the viewport.

A card header whose action group reflows from its own width. Zero dependencies, one file, a server component.

## 3. How to use it
import { Buttongroup034 } from "@/components/vibeui/buttongroup-034"

<Buttongroup034
  title="Sales report"
  subtitle="Updated 12 minutes ago"
  actions={["Export", "Configure"]}
  primary="Refresh"
/>

Read the installed file for the full prop list.

## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.

Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)

## 5. Keep exactly as installed
- the local --vibeui-buttongroup-034-* palette — do not swap it for your theme tokens
- the layout on the inner shell: a rule inside @container does not apply to the container itself
- the container query instead of a media query — a card in a narrow column of a wide screen must fold like it does on a phone
- the narrow layout as the default state: without container support the header still works
- the primary button last in the row: inside a cluster priority is carried by order and colour, not size
- the card's own light surface — without it the dark text disappears on a dark background

## 6. You may change
- the heading through title and the second line through subtitle
- the set of secondary actions through actions
- the primary action caption through primary and the group name through label
- the primary button colour through accent

## 7. Rules
- The 30rem threshold is hard-coded in @container: retune it for your own set of buttons.
- The buttons carry no onClick: wire your handlers at install time.
- The card body is sample copy: your own content takes its place in a project.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.

## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.

For developers

npx shadcn@latest add https://vibeui.ru/r/buttongroup-034.json
https://vibeui.ru/r/buttongroup-034.json

Компонент самодостаточен: один файл, без зависимостей, собственная палитра в переменных --vibeui-buttongroup-034-*. Серверный: хуков нет. Корень объявлен container-type:inline-size, а раскладка лежит на внутреннем [data-part="shell"] — правило внутри @container действует на потомков контейнера, но не на сам контейнер, и это ловушка, а не деталь. По умолчанию раскладка узкая: шапка в столбец, кнопки во всю ширину; @container (min-width: 30rem) переворачивает её в строку. Кнопки сцеплены margin-inline-start:-1px, скругления только крайним, главная выделена заливкой и стоит последней. Карточка несёт собственную светлую подложку, поэтому читается и на тёмном фоне витрины.

Component source

The same file your agent installs. Here in case you would rather copy it by hand.

import type { ComponentPropsWithoutRef, CSSProperties } from "react"

export type Buttongroup034Props = Omit<
  ComponentPropsWithoutRef<"section">,
  "children"
> & {
  title?: string
  subtitle?: string
  actions?: string[]
  primary?: string
  label?: string
  accent?: string
}

// Идея компонента: группа кнопок в шапке карточки, которая знает своё место.
// Порог перестроения берётся из ширины самой карточки (container-type на
// корне), а не из ширины окна: карточка часто стоит в узкой колонке широкого
// экрана, и media query там врёт. Раскладка лежит на внутреннем shell —
// правило внутри @container действует на потомков контейнера, но не на сам
// контейнер, это ловушка, а не деталь. По умолчанию раскладка узкая:
// без поддержки контейнеров шапка останется рабочей, просто в две строки.
const STYLES = `
:where([data-vibeui-block="buttongroup-034"]){
--vibeui-buttongroup-034-surface:oklch(1 0 0);
--vibeui-buttongroup-034-fg:oklch(0.24 0.016 265);
--vibeui-buttongroup-034-muted:oklch(0.55 0.014 265);
--vibeui-buttongroup-034-border:oklch(0.9 0.006 265);
--vibeui-buttongroup-034-accent:oklch(0.5 0.16 265);
--vibeui-buttongroup-034-on-accent:oklch(0.99 0.004 265);
--vibeui-buttongroup-034-radius:0.5rem;
--vibeui-buttongroup-034-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
container-type:inline-size;
}
[data-vibeui-block="buttongroup-034"]{
box-sizing:border-box;display:block;width:100%;max-width:34rem;
border:1px solid var(--vibeui-buttongroup-034-border);border-radius:0.875rem;
background:var(--vibeui-buttongroup-034-surface);
font-family:var(--vibeui-buttongroup-034-font);
}
[data-vibeui-block="buttongroup-034"] *{box-sizing:border-box}
[data-vibeui-block="buttongroup-034"] [data-part="shell"]{
display:flex;flex-direction:column;align-items:stretch;gap:0.75rem;
padding:0.875rem 1rem;
border-bottom:1px solid var(--vibeui-buttongroup-034-border);
}
[data-vibeui-block="buttongroup-034"] [data-part="heading"]{margin:0;min-width:0}
[data-vibeui-block="buttongroup-034"] [data-part="title"]{
display:block;color:var(--vibeui-buttongroup-034-fg);
font-size:0.9375rem;font-weight:700;line-height:1.3;
}
[data-vibeui-block="buttongroup-034"] [data-part="subtitle"]{
display:block;margin-top:0.125rem;
color:var(--vibeui-buttongroup-034-muted);
font-size:0.75rem;line-height:1.4;
}
[data-vibeui-block="buttongroup-034"] [data-part="group"]{
display:flex;isolation:isolate;
}
[data-vibeui-block="buttongroup-034"] button{
appearance:none;cursor:pointer;font:inherit;
position:relative;z-index:0;flex:1 1 auto;
display:inline-flex;align-items:center;justify-content:center;
height:2.125rem;padding:0 0.75rem;margin-inline-start:-1px;
border:1px solid var(--vibeui-buttongroup-034-border);
background:var(--vibeui-buttongroup-034-surface);
color:var(--vibeui-buttongroup-034-fg);
font-size:0.8125rem;font-weight:600;line-height:1;white-space:nowrap;
transition:background-color .16s ease;
}
[data-vibeui-block="buttongroup-034"] button:first-child{
margin-inline-start:0;
border-start-start-radius:var(--vibeui-buttongroup-034-radius);
border-end-start-radius:var(--vibeui-buttongroup-034-radius);
}
[data-vibeui-block="buttongroup-034"] button:last-child{
border-start-end-radius:var(--vibeui-buttongroup-034-radius);
border-end-end-radius:var(--vibeui-buttongroup-034-radius);
}
[data-vibeui-block="buttongroup-034"] button:hover{background:oklch(0.97 0.004 265)}
[data-vibeui-block="buttongroup-034"] [data-part="primary"]{
background:var(--vibeui-buttongroup-034-accent);
border-color:var(--vibeui-buttongroup-034-accent);
color:var(--vibeui-buttongroup-034-on-accent);
}
[data-vibeui-block="buttongroup-034"] [data-part="primary"]:hover{
background:oklch(0.45 0.16 265);
}
[data-vibeui-block="buttongroup-034"] button:focus-visible{
z-index:2;outline:2px solid var(--vibeui-buttongroup-034-accent);outline-offset:1px;
}
[data-vibeui-block="buttongroup-034"] [data-part="body"]{
padding:0.875rem 1rem 1rem;
color:var(--vibeui-buttongroup-034-muted);
font-size:0.8125rem;line-height:1.5;
}
[data-vibeui-block="buttongroup-034"] [data-part="body"] p{margin:0}
/* Порог от ширины карточки: в узкой колонке шапка складывается сама. */
@container (min-width: 30rem){
[data-vibeui-block="buttongroup-034"] [data-part="shell"]{flex-direction:row;align-items:center;justify-content:space-between}
[data-vibeui-block="buttongroup-034"] [data-part="group"]{flex:none}
[data-vibeui-block="buttongroup-034"] button{flex:none}
}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="buttongroup-034"] *{animation:none!important;transition:none!important}}
`

const DEFAULT_ACTIONS = ["Экспорт", "Настроить"]

/**
 * Шапка карточки с группой действий, складывающейся по ширине самой карточки.
 * Один файл, ноль зависимостей, собственная палитра.
 */
export function Buttongroup034({
  title = "Отчёт по продажам",
  subtitle = "Обновлён 12 минут назад",
  actions = DEFAULT_ACTIONS,
  primary = "Обновить",
  label = "Действия над отчётом",
  accent,
  className,
  style,
  ...props
}: Buttongroup034Props) {
  const palette = {
    ...(accent ? { "--vibeui-buttongroup-034-accent": accent } : null),
    ...style,
  } as CSSProperties

  return (
    <>
      <style href="vibeui-buttongroup-034" precedence="medium">
        {STYLES}
      </style>
      <section
        {...props}
        data-vibeui-block="buttongroup-034"
        className={className}
        style={palette}
      >
        <header data-part="shell">
          <h3 data-part="heading">
            <span data-part="title">{title}</span>
            <span data-part="subtitle">{subtitle}</span>
          </h3>
          <div data-part="group" role="group" aria-label={label}>
            {actions.map((action) => (
              <button key={action} type="button">
                {action}
              </button>
            ))}
            <button type="button" data-part="primary">
              {primary}
            </button>
          </div>
        </header>
        <div data-part="body">
          <p>
            За неделю 128 заказов на 1 240 000 ₽. Средний чек вырос на 4 % по
            сравнению с прошлой неделей.
          </p>
        </div>
      </section>
    </>
  )
}