You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
483 B
TypeScript
22 lines
483 B
TypeScript
import React, { forwardRef } from 'react';
|
|
import { Button } from '@arco-design/web-react';
|
|
import styles from './style/icon-button.module.less';
|
|
import cs from 'classnames';
|
|
|
|
function IconButton(props, ref) {
|
|
const { icon, className, ...rest } = props;
|
|
|
|
return (
|
|
<Button
|
|
ref={ref}
|
|
icon={icon}
|
|
shape="circle"
|
|
type="secondary"
|
|
className={cs(styles['icon-button'], className)}
|
|
{...rest}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default forwardRef(IconButton);
|