当前位置:首页 » 《资源分享》 » 正文

antd 中 如何改变按钮颜色,自定义样式颜色

6 人参与  2024年12月02日 10:01  分类 : 《资源分享》  评论

点击全文阅读


只是做了简单的封装,欢迎指正

import { Button } from 'antd';import React from 'react';import styles from './MyBtn.less';interface BtnPros {  BtnName?: string;  onClick?: React.MouseEventHandler<HTMLButtonElement>;  children?: any;}export default ({ onClick, children }: BtnPros) => {  let BtnName = '';  React.Children.map(children, (child: any) => {    if (typeof child === 'string') BtnName = child;  });  return (    <>      <Button className={styles.btn} onClick={onClick}>        {BtnName}      </Button>    </>  );};

.btn {  background-color: #f6a04d;  color: #fff;  &:hover {    color: #f6a04d !important;      border-color: #f59b4c !important;  }}
 <MyBtn onClick={clickfun}>click</MyBtn>


点击全文阅读


本文链接:http://zhangshiyu.com/post/195281.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1