UNPKG

@denali-design/react

Version:

React.JS component library for the Denali CSS Framework

21 lines 571 B
/** * Copyright 2020, Verizon Media * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms. */ import React from 'react'; export declare const DnSelect: React.FC<DnSelectProps>; export declare enum DnSelectSizes { small = "small", medium = "medium", default = "default", large = "large" } export interface DnSelectProps { size?: DnSelectSizes; isInverse?: boolean; isDisabled?: boolean; isFull?: boolean; children?: React.ReactNode; className?: string; } //# sourceMappingURL=DnSelect.d.ts.map