native-base
Version:
Essential cross-platform UI components for React Native
13 lines (10 loc) • 491 B
text/typescript
import type { CustomProps } from '../../../components/types/utils';
import type { InterfaceBoxProps } from '../../../components/primitives/Box/types';
export interface InterfaceCenterProps extends InterfaceBoxProps<ICenterProps> {}
export type ICircleProps = InterfaceBoxProps<ICircleProps> & {
size?: number | string;
};
export type ISquareProps = InterfaceBoxProps<ISquareProps> & {
size?: number | string;
};
export type ICenterProps = InterfaceCenterProps & CustomProps<'Center'>;