ワンクリックで
groww-icon-button
Icon-only button component for actions. Use for toolbars, navigation bars, or compact action buttons without text.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Icon-only button component for actions. Use for toolbars, navigation bars, or compact action buttons without text.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Accordion component with collapsible sections. Use for FAQs, nested content, or expandable details sections.
Button component with variants, sizes, loading states, and icon support. Use when creating clickable actions, forms, or navigation buttons.
Calendar component for date and month selection. Use when building date pickers, scheduling interfaces, or date range selectors.
Carousel component for image/content sliders with navigation controls. Use for image galleries, hero sections, or content that scrolls horizontally.
Checkbox component for boolean or multi-select inputs. Use when building forms with boolean toggles or multiple selection lists.
Dropdown menu component with trigger and content pattern. Use when building selectable menus, action menus, or nested navigation.
| name | groww-icon-button |
| description | Icon-only button component for actions. Use for toolbars, navigation bars, or compact action buttons without text. |
import IconButton from '@groww-tech/ui-toolkit/dist/esm/components/atoms/IconButton';
// or
import { IconButton } from '@groww-tech/ui-toolkit';
interface IconButtonProps {
icon: ReactIconComponentType; // Icon component (required)
size?: 'small' | 'medium' | 'large'; // Button size
onClick?: () => void; // Click handler
isDisabled?: boolean; // Disabled state
isLoading?: boolean; // Loading state
className?: string;
dataTestId?: string;
id?: string;
title?: string; // Tooltip/title
type?: 'button' | 'submit' | 'reset';
}
import { SearchIcon, CloseIcon, EditIcon } from '@groww-tech/icon-store';
<IconButton
icon={SearchIcon}
onClick={() => handleSearch()}
/>
<IconButton
icon={EditIcon}
onClick={handleEdit}
title="Edit item"
/>
<IconButton
icon={SaveIcon}
onClick={handleSave}
isLoading={true}
/>
<IconButton
icon={DeleteIcon}
onClick={handleDelete}
isDisabled={true}
/>