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

feat: minimal_mode for iframe embedding #138

Merged
merged 19 commits into from
May 16, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
feat: add triangle down icon
crfmc committed Apr 29, 2024
commit 92476815366d2dd3bb14c89f59d892a6c51f8377
11 changes: 11 additions & 0 deletions src/icon.ts
Original file line number Diff line number Diff line change
@@ -333,5 +333,16 @@ export const ICONS: Record<string, ICON_INFO> = {
],
stroke: 'currentColor',
fill: 'none'
},
TRIANGLE_DOWN: {
width: 11,
height: 7,
viewBox: '0 0 11 7',
path: [
'M0.5 1H10.5L5.5 6L0.5 1Z',
'M5.5 6L0.5 1H10.5L5.5 6ZM5.5 6V5.28571'
],
stroke: 'currentColor',
fill: 'none'
}
};