diff --git a/components/radio/demo/solid.md b/components/radio/demo/solid.md new file mode 100644 index 00000000000..f061593e4ff --- /dev/null +++ b/components/radio/demo/solid.md @@ -0,0 +1,15 @@ +--- +order: 9 +title: + zh-CN: 填底的按钮样式 + en-US: Solid radio button +--- + +## zh-CN + +实色填底的单选按钮样式。 + +## en-US + +Solid radio button style. + diff --git a/components/radio/demo/solid.ts b/components/radio/demo/solid.ts new file mode 100644 index 00000000000..c20e94ce2fd --- /dev/null +++ b/components/radio/demo/solid.ts @@ -0,0 +1,18 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'nz-demo-radio-solid', + template: ` +
+ + + + + + +
+ ` +}) +export class NzDemoRadioSolidComponent { + radioValue = 'A'; +}