import React from "react"; import styled from "styled-components"; const Box = styled.div` justify-content: flex-end; text-align: center; `; type InfoBoxProps = { children?: React.ReactNode }; const InfoBox: React.FC = ({ children }) => ( {children} ); export default InfoBox;