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.

12 lines
314 B

2 years ago
  1. import {Boi} from "../../primitives/boi/Boi";
  2. interface MessageBoiProps {
  3. text: string
  4. }
  5. export default function MessageBoi({text}: MessageBoiProps) {
  6. return (
  7. <Boi vertical="center" horizontal="center" style={{fontSize: "5vmax", fontWeight: "400", paddingTop: "0.125em"}}>
  8. {text}
  9. </Boi>
  10. );
  11. }