@lotte-innovate/ui-component-test 0.0.64 → 0.0.65

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,8 +2,9 @@ import React from 'react';
2
2
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
3
3
  import { VariantProps } from 'class-variance-authority';
4
4
  import { IColor } from '../../../lib/types';
5
- export interface AccordionProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'defaultValue'>, VariantProps<typeof accoridanVariants> {
5
+ export interface AccordionProps extends React.InputHTMLAttributes<HTMLInputElement>, VariantProps<typeof accoridanVariants> {
6
6
  color?: IColor;
7
+ defaultValue?: string[];
7
8
  }
8
9
  declare const accoridanVariants: (props?: ({
9
10
  scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;