hotfix: fix remaining imports from carbon-icons-svelte (#905)

This commit is contained in:
Eric Liu 2021-11-12 13:09:43 -08:00 committed by GitHub
commit 36f6a327b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 38 additions and 38 deletions

View file

@ -81,9 +81,9 @@
export let ref = null;
import { getContext } from "svelte";
import WarningFilled16 from "carbon-icons-svelte/lib/WarningFilled16/WarningFilled16.svelte";
import WarningAltFilled16 from "carbon-icons-svelte/lib/WarningAltFilled16/WarningAltFilled16.svelte";
import View16 from "carbon-icons-svelte/lib/View16/View16.svelte";
import WarningFilled16 from "../icons/WarningFilled16.svelte";
import WarningAltFilled16 from "../icons/WarningAltFilled16.svelte";
import View16 from "../icons/View16.svelte";
import ViewOff16 from "../icons/ViewOff16.svelte";
const ctx = getContext("Form");

View file

@ -66,8 +66,8 @@
export let readonly = false;
import { getContext } from "svelte";
import WarningFilled16 from "carbon-icons-svelte/lib/WarningFilled16/WarningFilled16.svelte";
import WarningAltFilled16 from "carbon-icons-svelte/lib/WarningAltFilled16/WarningAltFilled16.svelte";
import WarningFilled16 from "../icons/WarningFilled16.svelte";
import WarningAltFilled16 from "../icons/WarningAltFilled16.svelte";
import EditOff16 from "../icons/EditOff16.svelte";
const ctx = getContext("Form");