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