Skip to content

Commit

Permalink
docs(segmented-control): removes grid option from layout
Browse files Browse the repository at this point in the history
  • Loading branch information
anveshmekala committed Oct 16, 2023
1 parent 9ca3d5f commit 0d61b9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class SegmentedControl
@Prop({ reflect: true }) name: string;

/** Defines the layout of the component. */
@Prop({ reflect: true }) layout: Layout = "horizontal";
@Prop({ reflect: true }) layout: Extract<"horizontal" | "vertical", Layout> = "horizontal";

/** Specifies the size of the component. */
@Prop({ reflect: true }) scale: Scale = "m";
Expand Down

0 comments on commit 0d61b9b

Please sign in to comment.