Button Group
Unit Switch
A unit switch that shows the converted value next to it: both numbers ship in the markup and CSS picks the one whose radio is checked.
- buttongroup
- units
- readout
- css-only
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this in the header: https://vibeui.ru/c/buttongroup-045?lang=en
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-045" (Unit Switch) 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-045.json
Registry item: https://vibeui.ru/r/buttongroup-045.json
Installs to: components/vibeui/buttongroup-045.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
A unit switch that shows the converted value next to it: both numbers ship in the markup and CSS picks the one whose radio is checked.
A compact unit switch beside a value that changes without JS. Zero dependencies, one file, a server component.
## 3. How to use it
import { Buttongroup045 } from "@/components/vibeui/buttongroup-045"
<Buttongroup045
metricValue="18 °C"
imperialValue="64 °F"
caption="weekly average"
defaultValue="metric"
/>
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-045-* palette — do not swap it for your theme tokens
- both values in the markup: converting in the browser drifts from the server's rounding
- the pinned width and tabular figures on the value — otherwise the cluster jumps on every switch
- keeping the value and the switch together: a unit without a number means nothing
- radios inside a fieldset, so the choice reaches the form and works with arrows
- the caption under the value: "18 °C" without "weekly average" does not say what the number is
## 6. You may change
- the unit captions through metricLabel and imperialLabel
- the displayed numbers through metricValue and imperialValue
- the caption under the value through caption
- the initial system through defaultValue, the field name through name and the accent through accent
## 7. Rules
- There are exactly two units: a third system needs its own display rule in the CSS.
- The values are ready-made strings: formatting and rounding are your code's job.
- The hidden value stays in the HTML: it is shipped even though it is not shown.
- 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-045.jsonhttps://vibeui.ru/r/buttongroup-045.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в переменных --vibeui-buttongroup-045-*. Серверный: пересчёт делается на стороне, отдающей страницу, а не в браузере — поэтому округления и локали не расходятся. Оба значения лежат в разметке, и правило [data-vibeui-block]:has([data-unit="metric"] input:checked) [data-value="metric"]{display:inline} показывает нужное. Значение набрано табличными цифрами и имеет min-width:4.25rem, поэтому «18 °C» и «64 °F» занимают одно место. Сцепка компактная и стоит рядом со значением, а не отдельным блоком: единица без числа бессмысленна.
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 Buttongroup045Props = Omit<
ComponentPropsWithoutRef<"fieldset">,
"children"
> & {
metricLabel?: string
imperialLabel?: string
metricValue?: string
imperialValue?: string
caption?: string
defaultValue?: "metric" | "imperial"
name?: string
accent?: string
}
// Идея компонента: переключатель единиц, который тут же показывает результат
// пересчёта. Оба значения лежат в разметке, и выбранный radio показывает
// нужное правилом CSS — пересчёт делается на сервере при отдаче, а не в
// браузере, поэтому ни округления, ни локали не расходятся. Значение набрано
// табличными цифрами и имеет фиксированную минимальную ширину: «18 °C» и
// «64 °F» занимают одно место, и группа не дёргается при переключении.
// Сама сцепка компактная, потому что стоит рядом со значением, а не отдельно.
const STYLES = `
:where([data-vibeui-block="buttongroup-045"]){
--vibeui-buttongroup-045-surface:oklch(1 0 0);
--vibeui-buttongroup-045-track:oklch(0.955 0.004 265);
--vibeui-buttongroup-045-fg:oklch(0.24 0.016 265);
--vibeui-buttongroup-045-muted:oklch(0.56 0.014 265);
--vibeui-buttongroup-045-border:oklch(0.9 0.006 265);
--vibeui-buttongroup-045-accent:oklch(0.5 0.15 230);
--vibeui-buttongroup-045-radius:0.4375rem;
--vibeui-buttongroup-045-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="buttongroup-045"]{
box-sizing:border-box;display:inline-flex;align-items:center;gap:0.75rem;
margin:0;padding:0.625rem 0.875rem;
border:1px solid var(--vibeui-buttongroup-045-border);border-radius:0.875rem;
background:var(--vibeui-buttongroup-045-surface);
font-family:var(--vibeui-buttongroup-045-font);
}
[data-vibeui-block="buttongroup-045"] *{box-sizing:border-box}
[data-vibeui-block="buttongroup-045"] legend{
position:absolute;width:1px;height:1px;padding:0;margin:-1px;
overflow:hidden;clip-path:inset(50%);white-space:nowrap;
}
[data-vibeui-block="buttongroup-045"] [data-part="readout"]{
display:flex;flex-direction:column;gap:0.0625rem;
}
[data-vibeui-block="buttongroup-045"] [data-part="value"]{
min-width:4.25rem;
color:var(--vibeui-buttongroup-045-fg);
font-size:1.25rem;font-weight:700;line-height:1.1;
font-variant-numeric:tabular-nums;
}
[data-vibeui-block="buttongroup-045"] [data-part="value"] span{display:none}
[data-vibeui-block="buttongroup-045"] [data-part="caption"]{
color:var(--vibeui-buttongroup-045-muted);
font-size:0.6875rem;line-height:1.3;
}
[data-vibeui-block="buttongroup-045"] [data-part="track"]{
display:flex;gap:0.125rem;padding:0.1875rem;
border-radius:calc(var(--vibeui-buttongroup-045-radius) + 0.1875rem);
background:var(--vibeui-buttongroup-045-track);
}
[data-vibeui-block="buttongroup-045"] [data-part="unit"]{
position:relative;
display:inline-flex;align-items:center;justify-content:center;
min-width:2.25rem;height:1.75rem;padding:0 0.375rem;
border-radius:var(--vibeui-buttongroup-045-radius);
color:var(--vibeui-buttongroup-045-muted);
font-size:0.75rem;font-weight:700;line-height:1;cursor:pointer;
transition:background-color .16s ease,color .16s ease;
}
[data-vibeui-block="buttongroup-045"] input{
position:absolute;inset:0;width:100%;height:100%;margin:0;opacity:0;cursor:pointer;
}
[data-vibeui-block="buttongroup-045"] [data-part="unit"]:has(input:checked){
background:var(--vibeui-buttongroup-045-surface);
color:var(--vibeui-buttongroup-045-accent);
box-shadow:0 1px 2px oklch(0.2 0.02 265 / 16%);
}
[data-vibeui-block="buttongroup-045"] [data-part="unit"]:has(input:focus-visible){
outline:2px solid var(--vibeui-buttongroup-045-accent);outline-offset:2px;
}
/* Показывается то значение, чья единица выбрана. */
[data-vibeui-block="buttongroup-045"]:has([data-unit="metric"] input:checked) [data-value="metric"]{display:inline}
[data-vibeui-block="buttongroup-045"]:has([data-unit="imperial"] input:checked) [data-value="imperial"]{display:inline}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="buttongroup-045"] *{animation:none!important;transition:none!important}}
`
/**
* Переключатель единиц, показывающий пересчитанное значение без JS.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Buttongroup045({
metricLabel = "°C",
imperialLabel = "°F",
metricValue = "18 °C",
imperialValue = "64 °F",
caption = "средняя за неделю",
defaultValue = "metric",
name = "buttongroup-045",
accent,
className,
style,
...props
}: Buttongroup045Props) {
const palette = {
...(accent ? { "--vibeui-buttongroup-045-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-buttongroup-045" precedence="medium">
{STYLES}
</style>
<fieldset
{...props}
data-vibeui-block="buttongroup-045"
className={className}
style={palette}
>
<legend>Единицы измерения</legend>
<p data-part="readout">
<span data-part="value">
<span data-value="metric">{metricValue}</span>
<span data-value="imperial">{imperialValue}</span>
</span>
<span data-part="caption">{caption}</span>
</p>
<div data-part="track">
<label data-part="unit" data-unit="metric">
<input
type="radio"
name={name}
value="metric"
defaultChecked={defaultValue === "metric"}
/>
{metricLabel}
</label>
<label data-part="unit" data-unit="imperial">
<input
type="radio"
name={name}
value="imperial"
defaultChecked={defaultValue === "imperial"}
/>
{imperialLabel}
</label>
</div>
</fieldset>
</>
)
}