@teamsparta/stack-custom-modal
Version:
stack custom modal
9 lines (6 loc) • 369 B
TypeScript
import * as react from 'react';
import { TextProps } from '@teamsparta/stack-text';
interface CustomModalCaptionProps extends Omit<TextProps<"p">, "as"> {
}
declare const CustomModalCaption: react.ForwardRefExoticComponent<Omit<CustomModalCaptionProps, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
export { CustomModalCaption, type CustomModalCaptionProps };