Sign in
apache
/
aurora
/
refs/heads/e2ePython
/
.
/
ui
/
src
/
main
/
js
/
components
/
Icon.js
blob: 43caf8471cb7b7363a0983b0074d89196d9c533e [
file
] [
log
] [
blame
]
import
React
from
'react'
;
export
default
function
Icon
({
name
})
{
return
<
span className
={`
glyphicon glyphicon
-
$
{
name
}`}
/>;
}