@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.
- package/dist/components/accordion/utils.d.ts +10 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -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 {};
|