Skip to content
This repository was archived by the owner on Jun 28, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/doc/stepper/lineardoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function LinearDoc(props) {

const code = {
basic: `
<Stepper ref={stepperRef} style={{ flexBasis: '50rem' }}>
<Stepper ref={stepperRef} style={{ flexBasis: '50rem' }} linear>
<StepperPanel header="Header I">
<div className="flex flex-column h-12rem">
<div className="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div>
Expand Down Expand Up @@ -49,7 +49,7 @@ export default function BasicDemo() {

return (
<div className="card flex justify-content-center">
<Stepper ref={stepperRef} style={{ flexBasis: '50rem' }}>
<Stepper ref={stepperRef} style={{ flexBasis: '50rem' }} linear>
<StepperPanel header="Header I">
<div className="flex flex-column h-12rem">
<div className="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div>
Expand Down Expand Up @@ -91,7 +91,7 @@ export default function BasicDemo() {

return (
<div className="card flex justify-content-center">
<Stepper ref={stepperRef} style={{ flexBasis: '50rem' }}>
<Stepper ref={stepperRef} style={{ flexBasis: '50rem' }} linear>
<StepperPanel header="Header I">
<div className="flex flex-column h-12rem">
<div className="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div>
Expand Down
Loading