import { WatermarkCompactProps, WatermarkUi } from "@soybeanjs/headless/watermark"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/watermark/types.d.ts /** * Properties for the SWatermark component. */ interface WatermarkProps extends WatermarkCompactProps { /** * The class attribute for the root element. */ class?: ClassValue; /** * UI class overrides for each slot. */ ui?: Partial; /** * When true, the watermark overlay is fixed to the viewport instead of the parent container. * * @defaultValue false */ fullscreen?: boolean; } //#endregion export { WatermarkProps };