From 4c40b149cfed42f2513e1dd330a92ccc3363c04f Mon Sep 17 00:00:00 2001 From: TheMikeyRoss <97709651+TheMikeyRoss@users.noreply.github.com> Date: Sun, 14 Jan 2024 23:48:16 +0300 Subject: [PATCH] feat: updated svg.d.ts to include strokeLinejoin (#2416) * Updated svg.d.ts to include strokeLinejoin * chore: add changesets --------- Co-authored-by: Diego Muracciole --- .changeset/wise-parrots-compete.md | 5 +++++ packages/types/svg.d.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/wise-parrots-compete.md diff --git a/.changeset/wise-parrots-compete.md b/.changeset/wise-parrots-compete.md new file mode 100644 index 000000000..301534002 --- /dev/null +++ b/.changeset/wise-parrots-compete.md @@ -0,0 +1,5 @@ +--- +"@react-pdf/types": patch +--- + +Updated svg.d.ts to include strokeLinejoin diff --git a/packages/types/svg.d.ts b/packages/types/svg.d.ts index a7e732200..28c324c27 100644 --- a/packages/types/svg.d.ts +++ b/packages/types/svg.d.ts @@ -11,6 +11,7 @@ export interface SVGPresentationAttributes { strokeOpacity?: string | number; textAnchor?: 'start' | 'middle' | 'end'; strokeLineCap?: 'butt' | 'round' | 'square'; + strokeLinejoin?: 'butt' | 'round' | 'square'; visibility?: 'visible' | 'hidden' | 'collapse'; dominantBaseline?: | 'auto'