UNPKG

@octopusdeploy/design-system-components

Version:
11 lines (10 loc) 445 B
import type React from "react"; export interface SelectOptionLayoutProps { label: string; description?: string; prefix?: React.ReactElement; className?: string; } export declare function SelectOptionLayout({ label, description, prefix, className }: SelectOptionLayoutProps): import("react/jsx-runtime").JSX.Element; export declare const selectOptionHeight: number; export declare const selectOptionWithDescriptionHeight: number;