Home Reference Source

src/components/snippets/Typography/Text/Text.jsx

import React from 'react';

import Base from '../Base';

function Text({ ...rest }) {
  const tag = 'span';

  return <Base tag={tag} {...rest} />;
}

export default Text;