diff --git a/README.md b/README.md
index 5894fd2..fff0445 100644
--- a/README.md
+++ b/README.md
@@ -52,6 +52,19 @@ export default () => (
);
```
+The SVG is decorative by default. When using it as the progress indicator itself, provide progress semantics and an accessible name with standard SVG/ARIA props:
+
+```tsx | pure
+
+```
+
## Examples
Run the local dumi site:
@@ -88,6 +101,8 @@ Then open `http://localhost:8000`.
| `styles` | Partial> | - | Semantic styles for internal slots. |
| `transition` | string | - | CSS transition for track updates. |
+Standard SVG attributes, including `role` and `aria-*`, are forwarded to the root SVG.
+
## Development
```bash
diff --git a/README.zh-CN.md b/README.zh-CN.md
index 83a06d9..7cfa887 100644
--- a/README.zh-CN.md
+++ b/README.zh-CN.md
@@ -52,6 +52,19 @@ export default () => (
);
```
+SVG 默认作为装饰元素。当 SVG 本身作为进度指示器时,可通过标准 SVG/ARIA 属性提供进度语义和无障碍名称:
+
+```tsx | pure
+
+```
+
## 示例
运行本地 dumi 站点:
@@ -88,6 +101,8 @@ npm start
| `styles` | Partial> | - | 内部插槽的语义化样式。 |
| `transition` | string | - | 用于跟踪更新的 CSS 过渡。 |
+标准 SVG 属性(包括 `role` 和 `aria-*`)会透传到根 SVG。
+
## 本地开发
```bash
diff --git a/src/Line.tsx b/src/Line.tsx
index 39a9b59..cfb8c17 100644
--- a/src/Line.tsx
+++ b/src/Line.tsx
@@ -50,10 +50,12 @@ const Line: React.FC = (props) => {
return (