@teamsparta/stack-custom-modal
Version:
stack custom modal
9 lines (6 loc) • 358 B
text/typescript
import * as react from 'react';
import { TextProps } from '@teamsparta/stack-text';
interface CustomModalTitleProps extends Omit<TextProps<"h2">, "as"> {
}
declare const CustomModalTitle: react.ForwardRefExoticComponent<Omit<CustomModalTitleProps, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
export { CustomModalTitle, type CustomModalTitleProps };