diff --git a/dapp/src/components/Typography/index.tsx b/dapp/src/components/Typography/index.tsx new file mode 100644 index 000000000..e1e20dad9 --- /dev/null +++ b/dapp/src/components/Typography/index.tsx @@ -0,0 +1,28 @@ +import React from "react" +import { Text, TextProps } from "@chakra-ui/react" + +export function BodySm(props: TextProps) { + return ( + + ) +} + +export function BodyMd(props: TextProps) { + return ( + + ) +}