mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-29 22:51:54 +08:00
67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
import React from 'react'
|
|
import withDefaults from '../utils/with-defaults'
|
|
|
|
interface Props {
|
|
isRight?: boolean
|
|
isSingle?: boolean
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
isRight: false,
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type ButtonIconProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
const ButtonIcon: React.FC<React.PropsWithChildren<ButtonIconProps>> = ({
|
|
isRight,
|
|
isSingle,
|
|
children,
|
|
className,
|
|
...props
|
|
}) => {
|
|
return (
|
|
<span
|
|
className={`icon ${isRight ? 'right' : ''} ${isSingle ? 'single' : ''} ${className}`}
|
|
{...props}>
|
|
{children}
|
|
<style jsx>{`
|
|
.icon {
|
|
position: absolute;
|
|
left: var(--geist-ui-button-padding);
|
|
right: auto;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: var(--geist-ui-button-color);
|
|
z-index: 1;
|
|
}
|
|
|
|
.right {
|
|
right: var(--geist-ui-button-padding);
|
|
left: auto;
|
|
}
|
|
|
|
.icon :global(svg) {
|
|
background: transparent;
|
|
height: calc(var(--geist-ui-button-height) / 2.35);
|
|
width: calc(var(--geist-ui-button-height) / 2.35);
|
|
}
|
|
|
|
.single {
|
|
position: static;
|
|
transform: none;
|
|
}
|
|
`}</style>
|
|
</span>
|
|
)
|
|
}
|
|
|
|
const MemoButtonIcon = React.memo(ButtonIcon)
|
|
|
|
export default withDefaults(MemoButtonIcon, defaultProps)
|