diff --git a/src/content/docs/zh-cn/reference/experimental-flags/svg.mdx b/src/content/docs/zh-cn/reference/experimental-flags/svg.mdx
new file mode 100644
index 0000000000000..5032d4c295721
--- /dev/null
+++ b/src/content/docs/zh-cn/reference/experimental-flags/svg.mdx
@@ -0,0 +1,100 @@
+---
+title: 实验性 SVG 组件
+sidebar:
+ label: SVG 组件
+i18nReady: true
+---
+
+import Since from '~/components/Since.astro'
+
+
+
+**类型:** `boolean`
+**默认值:** `false`
+
+
+
+该功能允许你导入 SVG 文件并将其作为 Astro 组件来使用。默认情况下,Astro 会将 SVG 内容内联到你的 HTML 输出中。
+
+要启用该功能,请在你的 Astro 配置中将 `experimental.svg` 设置为 `true`。
+
+ ```js
+{
+ experimental: {
+ svg: true,
+ },
+}
+```
+
+要使用该功能,请引用任意本地 `.svg` 文件的默认导入。由于此导入会被视为 Astro 组件,因此需要使用与 [使用动态标签](/zh-cn/reference/astro-syntax/#动态标签) 时相同的约定(例如:大写)。
+
+```astro
+---
+import Logo from './path/to/svg/file.svg';
+---
+
+
+```
+
+## SVG 组件属性
+
+你可以传入诸如 `width`、`height`、`fill`、`stroke` 这样的属性,以及任何 [原生的 `