@fattureincloud/fic-design-system 0.14.1 → 0.14.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,10 @@
1
+ import { DefaultTheme } from 'styled-components/macro';
2
+ import { Animations, MappedProps } from './types';
3
+ interface MapParams {
4
+ animation?: Animations;
5
+ changeColor?: boolean;
6
+ open: boolean;
7
+ theme: DefaultTheme;
8
+ }
9
+ export declare const mapAnimation: ({ animation, changeColor, open, theme }: MapParams) => MappedProps;
10
+ export {};