2022-12-11 17:18:25 +01:00
|
|
|
import { Grid, Text } from '@mantine/core';
|
2022-12-04 21:19:40 +01:00
|
|
|
import { IconCursorText } from '@tabler/icons';
|
|
|
|
|
import { useTranslation } from 'next-i18next';
|
|
|
|
|
import { GenericAvailableElementType } from '../Shared/GenericElementType';
|
|
|
|
|
import { SelectorBackArrow } from '../Shared/SelectorBackArrow';
|
|
|
|
|
|
|
|
|
|
interface AvailableStaticTypesProps {
|
|
|
|
|
onClickBack: () => void;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const AvailableStaticTypes = ({ onClickBack }: AvailableStaticTypesProps) => {
|
|
|
|
|
const { t } = useTranslation('layout/element-selector/selector');
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<SelectorBackArrow onClickBack={onClickBack} />
|
|
|
|
|
|
|
|
|
|
<Text mb="md" color="dimmed">
|
|
|
|
|
Static elements provide you additional control over your dashboard. They are static, because
|
|
|
|
|
they don't integrate with any services and their content never changes.
|
|
|
|
|
</Text>
|
|
|
|
|
|
2022-12-11 17:18:25 +01:00
|
|
|
<Grid>
|
2022-12-04 21:19:40 +01:00
|
|
|
<GenericAvailableElementType
|
|
|
|
|
name="Static Text"
|
|
|
|
|
description="Display a fixed string on your dashboard"
|
|
|
|
|
image={<IconCursorText />}
|
|
|
|
|
/>
|
2022-12-11 17:18:25 +01:00
|
|
|
</Grid>
|
2022-12-04 21:19:40 +01:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|