lbry-desktop/ui/js/component/theme/view.jsx
2017-09-06 20:52:34 -04:00

22 lines
298 B
JavaScript

import React from "react";
const Theme = props => {
const { themePath } = props;
if (!themePath) {
return null;
}
return (
<link
id="theme"
href={themePath}
rel="stylesheet"
type="text/css"
media="screen,print"
/>
);
};
export default Theme;