mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-28 20:25:29 +08:00
47 lines
1013 B
TypeScript
47 lines
1013 B
TypeScript
import React from 'react'
|
|
import withDefaults from '../utils/with-defaults'
|
|
|
|
interface Props {
|
|
x?: number
|
|
y?: number
|
|
inline?: boolean
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
x: 1,
|
|
y: 1,
|
|
inline: false,
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type SpacerProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
export const getMargin = (num: number): string => {
|
|
return `calc(${num * 15.25}pt + 1px * ${num - 1})`
|
|
}
|
|
|
|
const Spacer: React.FC<SpacerProps> = ({ x, y, inline, className, ...props }) => {
|
|
const left = getMargin(x)
|
|
const top = getMargin(y)
|
|
|
|
return (
|
|
<span className={className} {...props}>
|
|
<style jsx>{`
|
|
span {
|
|
display: ${inline ? 'inline-block' : 'block'};
|
|
height: 1px;
|
|
width: 1px;
|
|
margin-left: ${left};
|
|
margin-top: ${top};
|
|
}
|
|
`}</style>
|
|
</span>
|
|
)
|
|
}
|
|
|
|
const MemoSpacer = React.memo(Spacer)
|
|
|
|
export default withDefaults(MemoSpacer, defaultProps)
|