main
fix build
This commit is contained in:
parent
f71ff66ace
commit
f83f3aae2e
@ -2,7 +2,6 @@ import Image from "next/image";
|
||||
import Card from "../ui/Card/Card"
|
||||
import Typography from "../ui/Typography/Typography"
|
||||
import styles from "./CompatibilityCard.module.scss"
|
||||
import IconLabel from "../ui/IconLabel/IconLabel";
|
||||
import { IconName } from "../ui/Icon/Icon";
|
||||
import MetaLabel from "../ui/MetaLabel/MetaLabel";
|
||||
|
||||
|
||||
@ -2,9 +2,8 @@ import Image from "next/image";
|
||||
import Card from "../ui/Card/Card"
|
||||
import Typography from "../ui/Typography/Typography"
|
||||
import styles from "./PalmCard.module.scss"
|
||||
import Icon, { IconName } from "../ui/Icon/Icon";
|
||||
import { IconName } from "../ui/Icon/Icon";
|
||||
import MetaLabel from "../ui/MetaLabel/MetaLabel";
|
||||
import Button from "../ui/Button/Button";
|
||||
|
||||
export default function PalmCard() {
|
||||
return (
|
||||
|
||||
@ -11,7 +11,7 @@ type GridProps = {
|
||||
};
|
||||
|
||||
export default function Grid({ children, columns = 3, gap = 16, className, style }: GridProps) {
|
||||
let gridTemplateColumns = `repeat(${columns}, 1fr)`
|
||||
const gridTemplateColumns = `repeat(${columns}, 1fr)`
|
||||
|
||||
return (
|
||||
<div
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { ReactNode } from "react";
|
||||
import clsx from "clsx";
|
||||
import Icon, { IconName, IconProps } from "../Icon/Icon";
|
||||
import Icon, { IconProps } from "../Icon/Icon";
|
||||
import styles from "./IconLabel.module.scss";
|
||||
|
||||
export type IconLabelProps = {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
.section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: start;
|
||||
align-items: flex-start;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user