@fattureincloud/fic-design-system 0.7.12 → 0.7.13
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { SingleValueProps } from 'react-select';
|
3
|
+
import { OptionType } from './Option';
|
4
|
+
declare const SingleValue: <O extends OptionType = OptionType>({ data: { icon, label }, }: SingleValueProps<O, import("react-select").GroupTypeBase<O>>) => JSX.Element;
|
5
|
+
export default SingleValue;
|