WbwPara.tsx 261 B

123456789101112
  1. import { Button } from "antd";
  2. import { PicCenterOutlined } from "@ant-design/icons";
  3. const WbwParaWidget = () => {
  4. return (
  5. <span>
  6. <Button size="small" type="link" icon={<PicCenterOutlined />} />
  7. </span>
  8. );
  9. };
  10. export default WbwParaWidget;