Skip to content

Commit

Permalink
fix(Seat): id was not being applied to SeatLegend
Browse files Browse the repository at this point in the history
  • Loading branch information
DSil committed Nov 13, 2024
1 parent ac0d4ea commit 336c97b
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@ import Text from "../../../Text";
import { TYPES } from "../../consts";
import type { Props } from "./types";

const SeatLegend = ({ type = TYPES.DEFAULT, label, dataTest, "aria-label": ariaLabel }: Props) => {
const SeatLegend = ({
type = TYPES.DEFAULT,
label,
dataTest,
"aria-label": ariaLabel,
id,
}: Props) => {
return (
<Stack inline align="center" spacing="200">
<svg
id={id}
width="16"
height="20"
viewBox="0 0 16 20"
Expand Down

0 comments on commit 336c97b

Please sign in to comment.