Text
Text is a component used to render text content or paragraphs in a Kuma UI application. It uses the <p> HTML element by default but this can be customized using the as prop.
Import
import { Text } from "@kuma-ui/core";Usage
Hello world
const TextExample = () => {
return (
<Text color="black" fontSize="16px">
Hello world
</Text>
);
};