antd-mobile-taro-ui
Version:
以antd-mobile为设计标准,基于taro框架的微信小程序组件库
22 lines (21 loc) • 648 B
TypeScript
import { FC } from 'react';
import { NativeProps } from 'antd-mobile/es/utils/native-props';
export declare type WaterMarkProps = {
gapX?: number;
gapY?: number;
zIndex?: number;
width?: number;
height?: number;
rotate?: number;
image?: string;
imageWidth?: number;
imageHeight?: number;
content?: string;
fontColor?: string;
fontStyle?: 'none' | 'normal' | 'italic' | 'oblique';
fontFamily?: string;
fontWeight?: 'normal' | 'light' | 'weight' | number;
fontSize?: number | string;
fullPage?: boolean;
} & NativeProps<'--z-index'>;
export declare const WaterMark: FC<WaterMarkProps>;