2022-10-05 22:42:58 +00:00
|
|
|
import type { React } from "../webpack/common";
|
2022-09-27 14:57:46 +00:00
|
|
|
|
|
|
|
export function Flex(props: React.PropsWithChildren<{
|
|
|
|
flexDirection?: React.CSSProperties["flexDirection"];
|
|
|
|
style?: React.CSSProperties;
|
2022-09-30 22:42:50 +00:00
|
|
|
className?: string;
|
2022-10-17 19:18:25 +00:00
|
|
|
} & React.HTMLProps<HTMLDivElement>>) {
|
2022-09-27 14:57:46 +00:00
|
|
|
props.style ??= {};
|
|
|
|
props.style.flexDirection ||= props.flexDirection;
|
|
|
|
props.style.gap ??= "1em";
|
|
|
|
props.style.display = "flex";
|
|
|
|
return (
|
|
|
|
<div {...props}>
|
|
|
|
{props.children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|