Files
supabase/apps/studio/components/interfaces/DiskManagement/DiskManagementRestartRequiredSection.tsx
Ivan Vasilov 308cd791a2 chore: Prep work for migrating to Tailwind v4 (#45285)
This PR preps the monorepo for a migration to Tailwind v4:
- Bump all Tailwind dependencies and libraries to the latest possible
version, while still compatible with Tailwind 3.
- Cleans up obsolete Tailwind 3 specific options and configs.
- Cleans up unused CSS files and fixes the CSS imports.
- Migrates all `important` uses in `@apply` lines to using the `!`
prefix.
- Move `typography.css` to the `config` package and import it from the
apps.
- Migrated all occurrences of `flex-grow`, `flex-shrink`,
`overflow-clip` and `overflow-ellipsis` since they're deprecated and
will be removed in Tailwind 4.
- Make the default theme object typesafe in the `ui` package.
- Migrate all `bg-opacity`, `border-opacity`, `ring-opacity` and
`divider-opacity` to the new format where they're declared as part of
the property color.
- Bump and unify all imports of `postcss` dependency.
2026-04-28 11:33:53 +02:00

42 lines
1.4 KiB
TypeScript

import { AnimatePresence, motion } from 'framer-motion'
import { RotateCcw } from 'lucide-react'
import { DialogSection, WarningIcon } from 'ui'
interface DiskMangementRestartRequiredSectionProps {
visible: boolean
title: string
description: string
}
export const DiskMangementRestartRequiredSection = ({
visible,
title,
description,
}: DiskMangementRestartRequiredSectionProps) => {
return (
<AnimatePresence>
{visible && (
<motion.div
initial={{ opacity: 1, height: 'auto' }}
exit={{ opacity: 0, height: 0 }}
transition={{ duration: 0.15 }}
className="w-full"
>
<DialogSection className="bg-surface-100 text-sm text-foreground-light flex items-center gap-4 relative w-full rounded-md border-spacing-0 border">
<div className="w-12 h-12">
<div className="relative w-10 h-10 m-1 bg-alternative text-foreground border rounded-full flex items-center justify-center">
<RotateCcw strokeWidth={1} />
<WarningIcon className="absolute -right-1.5 -top-1.5" />
</div>
</div>
<div className="flex flex-col gap-0 grow">
<p className="text-sm text-foreground">{title}</p>
<p className="text-sm text-foreground-light">{description}</p>
</div>
</DialogSection>
</motion.div>
)}
</AnimatePresence>
)
}