feat: address composite field (#4492)

Added new Address field input type.

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
rostaklein
2024-03-28 16:50:38 +01:00
committed by GitHub
parent 22d4af2e0c
commit 3171d0c87b
56 changed files with 1839 additions and 716 deletions

View File

@ -1,8 +1,10 @@
import { FunctionComponent } from 'react';
export type IconComponent = FunctionComponent<{
export type IconComponentProps = {
className?: string;
color?: string;
size?: number;
stroke?: number;
}>;
};
export type IconComponent = FunctionComponent<IconComponentProps>;