1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-02-07 17:58:24 +00:00
thatmattlove-hyperglass/docs/src/components/Native.tsx
2021-05-30 15:45:19 -07:00

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;