a.tsx 269 B

123456789
  1. import * as React from 'react';
  2. import { PropsWithChildren } from 'react';
  3. import Typography, { TextProps } from "../../typography";
  4. const a = (props: PropsWithChildren<TextProps>)=>{
  5. return <Typography.Text link={{ ...props }} {...props}/>;
  6. };
  7. export default a;