/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Toggle the inversion of the dropdown navigation */ export type DropdownInverted = boolean; export interface NavDropdownProps { inverted?: DropdownInverted; items?: { url?: string; label?: string; active?: boolean; }[]; /** * Inline styles to apply to the nav dropdown container. */ style?: {}; className?: string; }