diff --git a/src/components/RightSidebar/tabs/Fonts.js b/src/components/RightSidebar/tabs/Fonts.js index 81b6985b..64b61d19 100644 --- a/src/components/RightSidebar/tabs/Fonts.js +++ b/src/components/RightSidebar/tabs/Fonts.js @@ -1,4 +1,5 @@ import React from 'react'; +import TextField from '../../../shared/TextField'; const fontOptions = [ 'Lato', @@ -28,6 +29,17 @@ const FontsTab = ({ theme, onChange }) => { {x} ))} + + onChange('theme.font.family', v)} + /> +

+ You can use any font that is installed on your system as well. Just enter the name of the + font family here and the browser would load it up for you. +

); };