feat: storybook 추가

This commit is contained in:
2026-04-14 10:38:36 +09:00
parent 52f8c30b2e
commit 8d6bff88d6
23 changed files with 1687 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
import React from 'react';
import type { ReactNode } from 'react';
import {
Tooltip as AriaTooltip,
TooltipProps as AriaTooltipProps,
@@ -21,7 +21,7 @@ const style = tv({
export interface TooltipProps extends Omit<AriaTooltipProps, 'children'> {
bgColor?: 'white' | 'tertiary';
children: React.ReactNode;
children: ReactNode;
}
export function Tooltip({ children, ...props }: TooltipProps) {