import React from 'react'; import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; import { IconCheck, RGBA } from 'twenty-ui'; import { SubTitle } from '@/auth/components/SubTitle'; import { Title } from '@/auth/components/Title'; import { AppPath } from '@/types/AppPath'; import { MainButton } from '@/ui/input/button/components/MainButton'; import { UndecoratedLink } from '@/ui/navigation/link/components/UndecoratedLink'; import { AnimatedEaseIn } from '@/ui/utilities/animation/components/AnimatedEaseIn'; const StyledCheckContainer = styled.div` align-items: center; display: flex; justify-content: center; border: 2px solid ${(props) => props.color}; border-radius: ${({ theme }) => theme.border.radius.rounded}; box-shadow: ${(props) => props.color && `-4px 4px 0 -2px ${RGBA(props.color, 1)}`}; height: 36px; width: 36px; margin-bottom: ${({ theme }) => theme.spacing(4)}; `; const StyledButtonContainer = styled.div` margin-top: ${({ theme }) => theme.spacing(8)}; `; export const PaymentSuccess = () => { const theme = useTheme(); const color = theme.name === 'light' ? theme.grayScale.gray90 : theme.grayScale.gray10; return ( <> All set! Your account has been activated. ); };