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