/**
 * TEAM: frontend_infra
 * @flow
 */

import * as React from "react";

import Text from "../../Text";

/**
 * @title Text scale
 * @description Choosing a scale will set the type properties like line-height and size and will choose a corresponding semantic tag.
 */
export default function TextScale(): React.Node {
  return (
    <Text scale="title">The freight forwarder for modern logistics teams</Text>
  );
}
