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