【问题标题】:how to change icon in ant design collapse (Accordian)如何更改 ant 设计崩溃中的图标(手风琴)
【发布时间】:2021-03-28 21:19:46
【问题描述】:

我正在使用 ant design 手风琴来折叠和展开面板,我希望显示 + 和 - 图标而不是向上和向下箭头。我怎样才能做到这一点

我在用这个

https://ant.design/components/collapse/

请帮帮我

谢谢

【问题讨论】:

    标签: reactjs antd ant-design-pro


    【解决方案1】:

    你可以使用expandIconprop

    https://codepen.io/pen/?&editors=001&prefill_data_id=ab218015-02c4-4c67-9230-2aa590cf5ff3

    <Collapse
      {...others}
      expandIcon={({ isActive }) => isActive ? <IconYouWant /> : <IconYouWant />}
    >
     {children}
    </Collapse>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-12-22
      • 2021-02-28
      • 1970-01-01
      • 1970-01-01
      • 2018-09-09
      • 2015-10-18
      • 2012-12-21
      • 2019-02-27
      相关资源
      最近更新 更多