Skip to content

Commit

Permalink
remove unnecessary xmlns attributes from option SVGs
Browse files Browse the repository at this point in the history
  • Loading branch information
radium-v committed Dec 19, 2024
1 parent 1ca8d5e commit ce969bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web-components/src/option/option.template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import type { Option } from './option.js';
import type { OptionOptions } from './option.options.js';

const checkedIndicator = html.partial(/* html */ `
<svg aria-hidden="true" class="checkmark-16-filled" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<svg aria-hidden="true" class="checkmark-16-filled" viewBox="0 0 16 16">
<path
d="M14.046 3.486a.75.75 0 0 1-.032 1.06l-7.93 7.474a.85.85 0 0 1-1.188-.022l-2.68-2.72a.75.75 0 1 1 1.068-1.053l2.234 2.267l7.468-7.038a.75.75 0 0 1 1.06.032"
/>
</svg>
<svg aria-hidden="true" class="checkmark-12-regular" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12">
<svg aria-hidden="true" class="checkmark-12-regular" viewBox="0 0 12 12">
<path
d="M9.854 3.146a.5.5 0 0 1 0 .708l-4.5 4.5a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L5 7.293l4.146-4.147a.5.5 0 0 1 .708 0"
/>
Expand Down

0 comments on commit ce969bd

Please sign in to comment.