File size: 1,314 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
"use client"
import { forwardRef } from "react"
import {
type HTMLChakraProps,
type SystemStyleObject,
chakra,
} from "../../styled-system"
export interface FlexOptions {
align?: SystemStyleObject["alignItems"] | undefined
justify?: SystemStyleObject["justifyContent"] | undefined
wrap?: SystemStyleObject["flexWrap"] | undefined
direction?: SystemStyleObject["flexDirection"] | undefined
basis?: SystemStyleObject["flexBasis"] | undefined
grow?: SystemStyleObject["flexGrow"] | undefined
shrink?: SystemStyleObject["flexShrink"] | undefined
inline?: boolean | undefined
}
export interface FlexProps extends HTMLChakraProps<"div", FlexOptions> {}
export const Flex = forwardRef<HTMLDivElement, FlexProps>(
function Flex(props, ref) {
const {
direction,
align,
justify,
wrap,
basis,
grow,
shrink,
inline,
...rest
} = props
return (
<chakra.div
ref={ref}
{...rest}
css={{
display: inline ? "inline-flex" : "flex",
flexDirection: direction,
alignItems: align,
justifyContent: justify,
flexWrap: wrap,
flexBasis: basis,
flexGrow: grow,
flexShrink: shrink,
...props.css,
}}
/>
)
},
)
|