UNPKG

gestalt

Version:

A set of React UI components which enforce Pinterest's design language

6 lines (5 loc) 342 B
import { Props as TopItemProps } from '../SideNavigationTopItem'; export type Props = Pick<TopItemProps, 'active' | 'notificationAccessibilityLabel'> & { accessibilityLabel?: string; }; export default function ItemsEllipsis({ active, accessibilityLabel, notificationAccessibilityLabel, }: Props): import("react/jsx-runtime").JSX.Element;