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