// MIT License // Copyright (C) 2018-2021 by Marijn Haverbeke and others function svg(content: string, attrs = `viewBox="0 0 40 40"`) { return `url('data:image/svg+xml,${encodeURIComponent( content )}')`; } export function underline(color: string) { return svg( ``, `width="6" height="3"` ); }