import React from "react"; import PropTypes from "prop-types"; export const characterClassName = char => `character-${char .toString() .toLowerCase() .charCodeAt(0)}`; const Character = ({ children: char, className, ...passThrough }) => (