import type { CustomProps } from '../../../components/types/utils'; import type { InterfaceBoxProps } from '../../../components/primitives/Box/types'; export interface InterfaceCenterProps extends InterfaceBoxProps {} export type ICircleProps = InterfaceBoxProps & { size?: number | string; }; export type ISquareProps = InterfaceBoxProps & { size?: number | string; }; export type ICenterProps = InterfaceCenterProps & CustomProps<'Center'>;