@sikka/hawa
Version:
Modern UI Kit made with Tailwind
13 lines (10 loc) • 323 B
text/typescript
import { FC } from 'react';
import { D as DirectionType } from '../commonTypes-TGqbHlp_.mjs';
type DestroyableCard = {
position?: "bottom-right" | "bottom-left";
direction?: DirectionType;
fixed?: boolean;
children?: any;
};
declare const DestroyableCard: FC<DestroyableCard>;
export { DestroyableCard };