Skip to content

Commit

Permalink
feat(VDivider): add opacity support
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Apr 15, 2024
1 parent 395f157 commit 702bb50
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vuetify/src/components/VDivider/VDivider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const makeVDividerProps = propsFactory({
color: String,
inset: Boolean,
length: [Number, String],
opacity: [Number, String],
thickness: [Number, String],
vertical: Boolean,

Expand Down Expand Up @@ -62,6 +63,7 @@ export const VDivider = genericComponent()({
style={[
dividerStyles.value,
textColorStyles.value,
{ '--v-border-opacity': props.opacity },
props.style,
]}
aria-orientation={
Expand Down

0 comments on commit 702bb50

Please sign in to comment.