mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +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
|