원클릭으로
groww-popover
Popover and tooltip component for floating content. Use for contextual information, tooltips, or overflow menus.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Popover and tooltip component for floating content. Use for contextual information, tooltips, or overflow menus.
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-popover |
| description | Popover and tooltip component for floating content. Use for contextual information, tooltips, or overflow menus. |
import Popover from '@groww-tech/ui-toolkit/dist/esm/components/atoms/Popover';
// or
import { Popover } from '@groww-tech/ui-toolkit';
interface PopoverProps {
content: React.ReactNode; // Popover content
children: React.ReactNode; // Trigger element
position?: 'top' | 'bottom' | 'left' | 'right'; // Position
trigger?: 'hover' | 'click'; // Trigger type
className?: string;
}
<Popover
content={<div>Popover content here</div>}
position="top"
>
<Button buttonText="Hover me" />
</Popover>
<Popover
content={menuContent}
trigger="click"
position="bottom"
>
<IconButton icon={MoreIcon} />
</Popover>