fui-fancyui
Version:
FancyUI Libary
11 lines (10 loc) • 342 B
TypeScript
import { ReactNode } from 'react';
import { TTextAlignLC } from '../../../types/TTextAlignLC';
import { TTypography } from '../Typography';
import { TSpacings } from '../../../types/TSpacings';
export type TTitleForComponent = {
children?: ReactNode;
gap?: TSpacings;
title?: TTypography | ReactNode;
align?: TTextAlignLC;
};