UNPKG

quantumai-design-system

Version:

퀀텀에이아이의 디자인 시스템

7 lines (6 loc) 302 B
import { HTMLAttributes, ReactNode } from 'react'; export interface INavSectionProps extends HTMLAttributes<HTMLDivElement> { children: ReactNode; } declare const NavSection: ({ children, ...props }: INavSectionProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default NavSection;