@common-origin/design-system 2.8.1 → 2.9.0
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.
- package/dist/components/molecules/AccountCard/AccountCard.d.ts +2 -2
- package/dist/index.esm.js +200 -204
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +200 -204
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { IconName } from '../../atoms/Icon';
|
|
2
|
+
import { type IconName } from '../../atoms/Icon';
|
|
3
3
|
export type AccountType = 'checking' | 'savings' | 'credit' | 'investment' | 'loan';
|
|
4
4
|
export type TrendDirection = 'up' | 'down' | 'neutral';
|
|
5
5
|
export interface AccountCardAction {
|
|
@@ -39,6 +39,6 @@ export interface AccountCardProps {
|
|
|
39
39
|
* name, balance, optional trend indicator, and action buttons. Minimum
|
|
40
40
|
* 300x200px with elevation and hover effects.
|
|
41
41
|
*
|
|
42
|
-
* Composes: Stack, Box,
|
|
42
|
+
* Composes: Stack, Box, Avatar, Typography, MoneyDisplay, Button
|
|
43
43
|
*/
|
|
44
44
|
export declare const AccountCard: React.FC<AccountCardProps>;
|