import styled from "styled-components"; import StyledButton from "../../../common/component/styled/Button"; import PlayIcon from "../../../assets/icons/play.svg?url"; const StyledLastStep = styled.div` height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; > .secondaryText { margin-bottom: 48px; } > .tip { width: 560px; font-size: 20px; line-height: 24px; text-align: center; margin-bottom: 96px; > .strong { font-weight: 700; } } `; export default function CompletedStep({ data, setStep }) { return ( Welcome to {data.serverName} Proudly presented by Rustchat More settings, including domain resolution, privileges, securities, and invites are available in{" "} Settings setStep((prev) => prev + 1)}> play icon Enter ); }