Files
react/components/tree/tree-status-icon.tsx
unix 4e7b4cc57d refactor: export all hooks functions directly from main module
refactor: rename the modules to make sure tree-shaking works
2020-05-16 23:04:57 +08:00

49 lines
1.1 KiB
TypeScript

import React from 'react'
import useTheme from '../styles/use-theme'
import withDefaults from '../utils/with-defaults'
interface Props {
color?: string
width?: number
height?: number
active?: boolean
}
const defaultProps = {
width: 12,
height: 12,
active: false,
}
export type TreeStatusIconProps = Props & typeof defaultProps
const TreeStatusIcon: React.FC<TreeStatusIconProps> = ({ color, width, height, active }) => {
const theme = useTheme()
return (
<svg
viewBox="0 0 24 24"
width={width}
height={height}
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
fill="none"
shapeRendering="geometricPrecision">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
{!active && <path d="M12 8v8" />}
<path d="M8 12h8" />
<style jsx>{`
svg {
color: ${color || theme.palette.accents_8};
}
`}</style>
</svg>
)
}
const MemoTreeStatusIcon = React.memo(TreeStatusIcon)
export default withDefaults(MemoTreeStatusIcon, defaultProps)