import { Grid, Text } from '@mantine/core'; 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 ( <> Static elements provide you additional control over your dashboard. They are static, because they don't integrate with any apps and their content never changes. } /> ); };