diff --git a/packages/astro-embed-baseline-status/BaselineIcon.astro b/packages/astro-embed-baseline-status/BaselineIcon.astro index ba45ce9..5279edf 100644 --- a/packages/astro-embed-baseline-status/BaselineIcon.astro +++ b/packages/astro-embed-baseline-status/BaselineIcon.astro @@ -4,50 +4,94 @@ import type { StatusLevel } from './types'; interface Props { support: StatusLevel; } + +const paths = { + limited: ``, + widely: ``, + newly: ``, + no_data: ``, +}; --- - +