UNPKG

soda-material

Version:

A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)

18 lines (17 loc) 520 B
/// <reference types="react" /> import './navigation.scss'; import { ExtendProps } from '@/utils/type'; export interface HelperItem { active?: boolean; icon?: React.ReactNode; label?: React.ReactNode; badge?: { active?: boolean; label?: React.ReactNode; sd?: 'none' | 'small' | 'large'; }; } /** * for internal use only */ export declare function Helper({ className, active, icon, label, badge, ...props }: ExtendProps<HelperItem>): import("react/jsx-runtime").JSX.Element;