Buttons
Icon Button
A button with no label that still has a name: it goes into aria-label and title, and the glyphs are drawn with borders.
- button
- icon
- compact
- a11y
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/button-012?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 "button-012" (Icon Button) 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/button-012.json
Registry item: https://vibeui.ru/r/button-012.json
Installs to: components/vibeui/button-012.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 button with no label that still has a name: it goes into aria-label and title, and the glyphs are drawn with borders.
A square or round icon button: four border-drawn glyphs, three sizes, two tones and a mandatory action name. Zero dependencies, one file, no client JS.
## 3. How to use it
import { Button012 } from "@/components/vibeui/button-012"
<Button012 label="Add" icon="plus" tone="accent" />
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-button-012-* palette — do not swap it for your theme tokens
- aria-label and title: a button without text must name its action
- the single size variable — icon buttons in a row have to match
- border-drawn glyphs instead of an icon package for four shapes
- the visible focus ring: on a small target it matters most
- the 1.875rem minimum — a smaller target cannot be tapped
## 6. You may change
- label — what the button does
- icon — plus, close, more or search
- shape and size
- tone — neutral or accent
## 7. Rules
- An unlabelled icon suits only universal actions: close, add, search. Label everything else.
- For your own glyph, replace the glyph span inside your copy of the component.
- title only shows on hover: it supplements aria-label, it does not replace it.
- 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/button-012.jsonhttps://vibeui.ru/r/button-012.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-button-012-*. Серверный: хуков нет. Размер задан одной переменной, форма и тон — атрибутами data-shape и data-tone. Четыре значка (плюс, крестик, многоточие, лупа) собраны из бордюров и псевдоэлементов, поэтому иконочный пакет не подключается. Имя действия обязательно и дублируется в title.
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 Button012Shape = "circle" | "square"
export type Button012Props = Omit<
ComponentPropsWithoutRef<"button">,
"children"
> & {
/** Что делает кнопка. Обязателен: у иконки нет текста. */
label?: string
icon?: "plus" | "close" | "more" | "search"
shape?: Button012Shape
size?: "sm" | "md" | "lg"
tone?: "neutral" | "accent"
}
// Идея компонента: кнопка без подписи, у которой имя всё равно есть. Оно
// уходит в aria-label и в title: иконка без имени — тупик и для скринридера,
// и для человека, который видит её впервые. Значки нарисованы бордюрами и
// псевдоэлементами, поэтому иконочный пакет не нужен.
const STYLES = `
:where([data-vibeui-block="button-012"]){
--vibeui-button-012-size:2.25rem;
--vibeui-button-012-fg:oklch(0.3 0.014 265);
--vibeui-button-012-bg:oklch(1 0 0);
--vibeui-button-012-border:oklch(0.9 0.006 265);
--vibeui-button-012-hover:oklch(0.96 0.004 265);
--vibeui-button-012-accent:oklch(0.55 0.17 265);
--vibeui-button-012-radius:0.625rem;
}
[data-vibeui-block="button-012"]{
appearance:none;cursor:pointer;
display:inline-flex;align-items:center;justify-content:center;flex:none;
width:var(--vibeui-button-012-size);height:var(--vibeui-button-012-size);
padding:0;box-sizing:border-box;
border:1px solid var(--vibeui-button-012-border);
border-radius:var(--vibeui-button-012-radius);
background:var(--vibeui-button-012-bg);color:var(--vibeui-button-012-fg);
transition:background-color .16s ease,border-color .16s ease;
}
[data-vibeui-block="button-012"][data-shape="circle"]{border-radius:9999px}
[data-vibeui-block="button-012"][data-size="sm"]{--vibeui-button-012-size:1.875rem;--vibeui-button-012-radius:0.5rem}
[data-vibeui-block="button-012"][data-size="lg"]{--vibeui-button-012-size:2.75rem;--vibeui-button-012-radius:0.75rem}
[data-vibeui-block="button-012"][data-tone="accent"]{
border-color:transparent;background:var(--vibeui-button-012-accent);color:oklch(0.99 0.01 265);
}
[data-vibeui-block="button-012"]:hover{background:var(--vibeui-button-012-hover)}
[data-vibeui-block="button-012"][data-tone="accent"]:hover{filter:brightness(0.95);background:var(--vibeui-button-012-accent)}
[data-vibeui-block="button-012"]:focus-visible{outline:2px solid var(--vibeui-button-012-accent);outline-offset:2px}
[data-vibeui-block="button-012"]:disabled{cursor:not-allowed;opacity:.5}
/* Значки на бордюрах: ради четырёх фигур пакет иконок не подключают. */
[data-vibeui-block="button-012"] [data-part="glyph"]{position:relative;width:0.875rem;height:0.875rem}
[data-vibeui-block="button-012"] [data-icon="plus"]::before,
[data-vibeui-block="button-012"] [data-icon="plus"]::after,
[data-vibeui-block="button-012"] [data-icon="close"]::before,
[data-vibeui-block="button-012"] [data-icon="close"]::after{
content:"";position:absolute;left:50%;top:50%;background:currentColor;border-radius:9999px;
}
[data-vibeui-block="button-012"] [data-icon="plus"]::before{width:0.75rem;height:1.5px;margin:-0.75px 0 0 -0.375rem}
[data-vibeui-block="button-012"] [data-icon="plus"]::after{width:1.5px;height:0.75rem;margin:-0.375rem 0 0 -0.75px}
[data-vibeui-block="button-012"] [data-icon="close"]::before,
[data-vibeui-block="button-012"] [data-icon="close"]::after{width:0.75rem;height:1.5px;margin:-0.75px 0 0 -0.375rem}
[data-vibeui-block="button-012"] [data-icon="close"]::before{transform:rotate(45deg)}
[data-vibeui-block="button-012"] [data-icon="close"]::after{transform:rotate(-45deg)}
[data-vibeui-block="button-012"] [data-icon="more"]{
display:flex;align-items:center;justify-content:center;gap:0.1875rem;
}
[data-vibeui-block="button-012"] [data-icon="more"] i{width:0.1875rem;height:0.1875rem;border-radius:9999px;background:currentColor}
[data-vibeui-block="button-012"] [data-icon="search"]::before{
content:"";position:absolute;left:0;top:0;width:0.625rem;height:0.625rem;
border:1.5px solid currentColor;border-radius:9999px;
}
[data-vibeui-block="button-012"] [data-icon="search"]::after{
content:"";position:absolute;right:0.0625rem;bottom:0.0625rem;
width:0.375rem;height:1.5px;background:currentColor;transform:rotate(45deg);
}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="button-012"] *{animation:none!important;transition:none!important}}
`
/**
* Кнопка-иконка, у которой имя всё равно есть: aria-label и title.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Button012({
label = "Добавить",
icon = "plus",
shape = "square",
size = "md",
tone = "neutral",
type = "button",
className,
style,
...props
}: Button012Props) {
return (
<>
<style href="vibeui-button-012" precedence="medium">
{STYLES}
</style>
<button
{...props}
type={type}
data-vibeui-block="button-012"
data-shape={shape}
data-size={size}
data-tone={tone}
className={className}
style={style as CSSProperties}
aria-label={label}
title={label}
>
<span data-part="glyph" data-icon={icon} aria-hidden="true">
{icon === "more" ? (
<>
<i />
<i />
<i />
</>
) : null}
</span>
</button>
</>
)
}