blob: 43caf8471cb7b7363a0983b0074d89196d9c533e [file] [log] [blame]
import React from 'react';
export default function Icon({ name }) {
return <span className={`glyphicon glyphicon-${name}`} />;
}