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