mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-10 18:06:22 +00:00
7be3a40b7c
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
28 lines
644 B
TypeScript
28 lines
644 B
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2024 Vendicated and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { CSSProperties, JSX } from "react";
|
|
|
|
interface Props {
|
|
columns: number;
|
|
gap?: string;
|
|
inline?: boolean;
|
|
}
|
|
|
|
export function Grid(props: Props & JSX.IntrinsicElements["div"]) {
|
|
const style: CSSProperties = {
|
|
display: props.inline ? "inline-grid" : "grid",
|
|
gridTemplateColumns: `repeat(${props.columns}, 1fr)`,
|
|
gap: props.gap,
|
|
...props.style
|
|
};
|
|
|
|
return (
|
|
<div {...props} style={style}>
|
|
{props.children}
|
|
</div>
|
|
);
|
|
}
|