Vencord/src/components/Flex.tsx

18 lines
459 B
TypeScript
Raw Normal View History

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-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>
);
}