You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
314 B

import {Boi} from "../../primitives/boi/Boi";
interface MessageBoiProps {
text: string
}
export default function MessageBoi({text}: MessageBoiProps) {
return (
<Boi vertical="center" horizontal="center" style={{fontSize: "5vmax", fontWeight: "400", paddingTop: "0.125em"}}>
{text}
</Boi>
);
}