mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Fix tabler icon props import after version bump
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
4f448d4c4c
commit
d3b0ab453c
|
@ -1,12 +1,12 @@
|
|||
import { Card, Group } from "@mantine/core";
|
||||
import { TablerIconsProps } from "@tabler/icons-react";
|
||||
import { IconProps } from "@tabler/icons-react";
|
||||
import { FC, ReactNode } from "react";
|
||||
import { infoPageCardTitleIconStyle } from "../styles";
|
||||
|
||||
const InfoPageCard: FC<{
|
||||
children: ReactNode;
|
||||
title?: string;
|
||||
icon?: React.ComponentType<TablerIconsProps>;
|
||||
icon?: React.ComponentType<IconProps>;
|
||||
}> = ({ children, title, icon: Icon }) => {
|
||||
return (
|
||||
<Card shadow="xs" withBorder p="md">
|
||||
|
|
Loading…
Reference in a new issue