@designbasekorea/ui 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2245,7 +2245,7 @@ declare const List: React$1.FC<ListProps>;
2245
2245
  */
2246
2246
 
2247
2247
  type LogoSize = 'xs' | 's' | 'm' | 'l' | 'xl';
2248
- type LogoVariant = 'default' | 'primary' | 'secondary' | 'white' | 'dark';
2248
+ type LogoVariant = 'original' | 'light' | 'dark' | 'default' | 'primary' | 'secondary' | 'white';
2249
2249
  type LogoType = 'designbase' | 'designbase-mark' | 'custom';
2250
2250
  interface LogoProps {
2251
2251
  /** 로고 타입 (designbase: 풀 로고, designbase-mark: 심볼만, custom: 커스텀) */
@@ -2258,7 +2258,7 @@ interface LogoProps {
2258
2258
  alt?: string;
2259
2259
  /** 로고 크기 */
2260
2260
  size?: LogoSize;
2261
- /** 로고 스타일 variant */
2261
+ /** 로고 스타일 variant (original: SVG 원본 색상, light: 밝은 색상/흰색, dark: 어두운 색상/검정) */
2262
2262
  variant?: LogoVariant;
2263
2263
  /** 클릭 가능 여부 */
2264
2264
  clickable?: boolean;