mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
9 lines
297 B
JavaScript
9 lines
297 B
JavaScript
import React from 'react';
|
|
|
|
module.exports = (props) => {
|
|
const char = `${props.children}`;
|
|
const className = `character character-${char.toLowerCase().charCodeAt(0)}`;
|
|
return <div {...props} className={className}>{props.children}</div>;
|
|
};
|
|
|
|
// TODO: Require that props.children be a string
|