mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-26 04:16:39 +02:00
22 lines
648 B
TypeScript
22 lines
648 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
import { Group } from '/@/shared/components/group/group';
|
|
import { Stack } from '/@/shared/components/stack/stack';
|
|
import { Text } from '/@/shared/components/text/text';
|
|
|
|
interface ActionRequiredContainerProps {
|
|
children: ReactNode;
|
|
title: string;
|
|
}
|
|
|
|
export const ActionRequiredContainer = ({ children, title }: ActionRequiredContainerProps) => (
|
|
<Stack style={{ cursor: 'default', maxWidth: '700px' }}>
|
|
<Group>
|
|
<Text size="xl" style={{ textTransform: 'uppercase' }}>
|
|
{title}
|
|
</Text>
|
|
</Group>
|
|
<Stack>{children}</Stack>
|
|
</Stack>
|
|
);
|