lbry-desktop/ui/component/theme/view.jsx
2019-11-11 13:27:29 -05:00

14 lines
243 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;