@navinc/base-react-components
Version:
Nav's Pattern Library
13 lines (12 loc) • 374 B
TypeScript
export const LabelOverValue: React.ForwardRefExoticComponent<{
[x: string]: any;
[x: number]: any;
[x: symbol]: any;
} & {
theme?: import("styled-components").DefaultTheme | undefined;
}>;
export function LabelOverValueContainer({ children, borderColor }: {
children?: any[] | undefined;
borderColor: any;
}): JSX.Element;
import React from "react";