lbry-desktop/ui/js/component/theme/view.jsx
2017-09-06 21:53:42 -04:00

21 lines
281 B
JavaScript

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