Skip to content

Commit

Permalink
fix: centre svg
Browse files Browse the repository at this point in the history
  • Loading branch information
Ademsk1 committed Oct 27, 2023
1 parent a4def1b commit da16f9b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/assets/build/radioselected.icon.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const RadioSelected = (props: any) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
<circle cx={10} cy={10} r={4} />
export const RadioSelected = (props: any) => (
<svg xmlns="http://www.w3.org/2000/svg" {...props} viewBox="0 0 20 20">
<g id="State=Selected">
<circle id="Ellipse 1" cx={10} cy={10} r={4} />
</g>
</svg>
)
export default RadioSelected

0 comments on commit da16f9b

Please sign in to comment.