UNPKG

@denali-design/react

Version:

React.JS component library for the Denali CSS Framework

46 lines 1.09 kB
/** * 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 DnChip: React.FC<DnChipProps>; export declare enum DnChipSizes { small = "small", medium = "medium", default = "default", large = "large" } export declare enum DnChipColors { brand = "brand", grey = "grey", red = "red", orange = "orange", yellow = "yellow", lime = "lime", green = "green", sky = "sky", blue = "blue", purple = "purple", violet = "violet", pink = "pink" } export declare enum DnChipShades { shade100 = "100", shade200 = "200", shade300 = "300", shade400 = "400", shade500 = "500", shade600 = "600", shade700 = "700", shade800 = "800" } export interface DnChipProps { size?: DnChipSizes; bgColor?: DnChipColors; bgShade?: DnChipShades; color?: DnChipColors; shade?: DnChipShades; children?: React.ReactNode; className?: string; } //# sourceMappingURL=DnChip.d.ts.map