mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 21:16:46 +00:00
18 lines
381 B
TypeScript
18 lines
381 B
TypeScript
import { Paper, Stack, Text } from '@mantine/core';
|
|
|
|
import { StylishText } from '../items/StylishText';
|
|
|
|
export function FactItem({
|
|
title,
|
|
value
|
|
}: Readonly<{ title: string; value: number }>) {
|
|
return (
|
|
<Paper p="md" shadow="xs">
|
|
<Stack gap="xs">
|
|
<StylishText size="md">{title}</StylishText>
|
|
<Text>{value}</Text>
|
|
</Stack>
|
|
</Paper>
|
|
);
|
|
}
|