import React from 'react'; const OutlineTheme = ({ config }) => { const { title, bgColor, pattern, author, icon, font, customIcon } = config; return (

{title}

{ customIcon ?
img
:
}

{author}

); } export default OutlineTheme;