import { FC } from 'react'; import { GetRendererVersion, GetUIVersion, NotificationAlertItem } from '../../../../api'; import { Button, Column, Flex, Grid, LayoutNotificationCredits, LayoutNotificationAlertViewProps, Text } from '../../../../common'; interface NotificationDefaultAlertViewProps extends LayoutNotificationAlertViewProps { item: NotificationAlertItem; } export const NitroSystemAlertView: FC = props => { const { title = 'Nitro Cool UI Edit', onClose = null, ...rest } = props; return (
Nitro React Nitro was created by billsonnn
Nitro Versions Nitro: {GetUIVersion()}
Renderer: v{GetRendererVersion()}
{/* Logo on the left */}
{/* Text on the right */} Cool UI Was created by Wassehk - DuckieTM (Re-Design) - Jonas (Contributing) - Ohlucas (Sunset resources) v1.5.0
Special Thanks The whole Discord community !! - Billsonnn for creating Nitro. - Remco for testing. - Object from Atom. - Habbo for providing the assets
); };