diff options
author | 2023-07-14 15:57:06 +0200 | |
---|---|---|
committer | 2023-07-14 09:57:06 -0400 | |
commit | b3b640435b1a6630a40be7dbe81f21a9693856d2 (patch) | |
tree | eb7985b3da08bc45618e99fc663dee88bf3feab7 /examples/portfolio/src/components/Icon.astro | |
parent | 7a6b48a1a40122fa3a6c1aef112f82dec25ee083 (diff) | |
download | astro-b3b640435b1a6630a40be7dbe81f21a9693856d2.tar.gz astro-b3b640435b1a6630a40be7dbe81f21a9693856d2.tar.zst astro-b3b640435b1a6630a40be7dbe81f21a9693856d2.zip |
nit: export props has been unnecessary.. forever (#7646)
Diffstat (limited to 'examples/portfolio/src/components/Icon.astro')
-rw-r--r-- | examples/portfolio/src/components/Icon.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/portfolio/src/components/Icon.astro b/examples/portfolio/src/components/Icon.astro index 1eccb9991..92cff492a 100644 --- a/examples/portfolio/src/components/Icon.astro +++ b/examples/portfolio/src/components/Icon.astro @@ -2,7 +2,7 @@ import type { HTMLAttributes } from 'astro/types'; import { iconPaths } from './IconPaths'; -export interface Props { +interface Props { icon: keyof typeof iconPaths; color?: string; gradient?: boolean; |