@mindly/ui-components 3.36.4 → 3.37.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -157,3 +157,5 @@ export { default as LineFileInput } from './lib/Inputs/LineFileInput';
157
157
  export * from './lib/Inputs/LineFileInput';
158
158
  export { default as SuccessScreen } from './lib/SuccessScreen';
159
159
  export * from './lib/SuccessScreen';
160
+ export { default as Flag } from './lib/Flag';
161
+ export * from './lib/Flag';
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ declare const FlagTypes: {
3
+ uk: JSX.Element;
4
+ ua: JSX.Element;
5
+ pl: JSX.Element;
6
+ gb: JSX.Element;
7
+ en: JSX.Element;
8
+ ru: JSX.Element;
9
+ };
10
+ declare type FlagProps = {
11
+ name: keyof typeof FlagTypes;
12
+ dimensions?: number;
13
+ };
14
+ declare const _default: React.NamedExoticComponent<FlagProps>;
15
+ export default _default;
@@ -0,0 +1,5 @@
1
+ declare type FlagProps = {
2
+ dimensions: number;
3
+ };
4
+ export declare const FlagWrapper: import("styled-components").StyledComponent<"div", any, FlagProps, never>;
5
+ export {};
@@ -0,0 +1,2 @@
1
+ export { default } from './Flag';
2
+ export * from './Flag';