gestalt
Version:
A set of React UI components which enforce Pinterest's design language
7 lines (6 loc) • 379 B
TypeScript
import { Props } from '../SideNavigationGroup';
type SideNavigationGroupMobileProps = Props & {
hasActiveChild: boolean;
};
export default function SideNavigationGroupMobile({ children, badge, counter, display, hasActiveChild, icon, label, primaryAction, notificationAccessibilityLabel, }: SideNavigationGroupMobileProps): import("react/jsx-runtime").JSX.Element;
export {};