Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch rotated chevron icon #503

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/cuddly-students-destroy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ladle/react": patch
---

Switch rotated chevron icon
4 changes: 2 additions & 2 deletions packages/ladle/lib/app/src/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,12 @@ export const Down = ({ rotate }: { rotate?: boolean }) => {
{rotate ? (
<svg viewBox="0 0 24 24" stroke="currentColor" fill="none">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M6 9l6 6l6 -6"></path>
<path d="M9 6l6 6l-6 6"></path>
</svg>
) : (
<svg viewBox="0 0 24 24" stroke="currentColor" fill="none">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M9 6l6 6l-6 6"></path>
<path d="M6 9l6 6l6 -6"></path>
</svg>
)}
</div>
Expand Down
Loading