native-base
Version:
Essential cross-platform UI components for React Native
11 lines (10 loc) • 415 B
TypeScript
import type { InterfaceTextProps } from '../Text/types';
import type { CustomProps, ThemeComponentSizeType } from '../../types/utils';
export interface IterfaceHeadingProps extends InterfaceTextProps<IHeadingProps> {
/**
* The size of the heading.
* @default xl
*/
size?: ThemeComponentSizeType<'Heading'>;
}
export declare type IHeadingProps = IterfaceHeadingProps & CustomProps<'Heading'>;