UNPKG

@gdsc-dju/styled-components

Version:

GDSC-DJU Design System Component package for styled-components

8 lines (6 loc) 185 B
import { HTMLAttributes, ReactNode } from 'react'; export interface ChipProps extends HTMLAttributes<HTMLDivElement> { children: ReactNode; isDark?: boolean; size?: 'L' | 'S'; }