import React from "react"; import { css, cx } from "emotion"; import { colors } from "pebble-shared"; import { TextProps } from "./typings/Text"; const Text: React.FunctionComponent = ({ typography, color = colors.gray.darker, children, className }) => { const _className = css({ ...typography, color }); return {children}; }; export default Text;