import * as React from "react"; import Text from "./Text"; import { BasicTextProps } from "../textTypes"; import { themeWarning } from "../../../design-tokens/build/js/designTokens"; const SuccessText = ({ align = "inherit", weight = "normal", size = "m", wrap = "wrap", tag = "p", ...props }: BasicTextProps) => ( ); export default SuccessText;