mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-02-07 17:58:24 +00:00
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import * as React from "react";
|
|
import styles from "./styles.module.css";
|
|
|
|
const Native = (props: React.ComponentProps<"span">): JSX.Element => {
|
|
const { children } = props;
|
|
return <span className={styles.Native}>{children}</span>;
|
|
};
|
|
|
|
export default Native;
|