UNPKG

@cuvp1225/tango-mail

Version:
10 lines (9 loc) 451 B
import { __rest } from "tslib"; import React from 'react'; export function Placeholder(_a) { var { text = '这里可以放置内容', style } = _a, props = __rest(_a, ["text", "style"]); return (React.createElement("div", Object.assign({}, props, { style: placeholderStyle(style) }), text)); } const placeholderStyle = (style) => { return Object.assign({ padding: 16, backgroundColor: '#f3f3f3', border: '1px solid, #666666' }, style); };