Skip to content

Commit

Permalink
Merge pull request #796 from openameba/feat/build-icon-via-webhook
Browse files Browse the repository at this point in the history
feat(spindle-icons): update icons
  • Loading branch information
MasatoHonda authored Sep 6, 2023
2 parents 8160917 + 896bdec commit c9a21ca
Show file tree
Hide file tree
Showing 11 changed files with 45 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions packages/spindle-icons/dist/svg-unoptimized/paperplane.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/spindle-icons/dist/svg/paperplane.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/spindle-icons/dist/svg/paperplane_fill.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/spindle-icons/dist/svg/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions packages/spindle-icons/docs/icons.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@
| openblank_fill | ![](../dist/svg/openblank_fill.svg) |
| ownd | ![](../dist/svg/ownd.svg) |
| palette_fill | ![](../dist/svg/palette_fill.svg) |
| paperplane | ![](../dist/svg/paperplane.svg) |
| paperplane_fill | ![](../dist/svg/paperplane_fill.svg) |
| pause | ![](../dist/svg/pause.svg) |
| pause_bold | ![](../dist/svg/pause_bold.svg) |
| pawprint | ![](../dist/svg/pawprint.svg) |
Expand Down
16 changes: 16 additions & 0 deletions packages/spindle-ui/src/Icon/Paperplane.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const SvgPaperplane = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="currentColor"
viewBox="0 0 24 24"
role="img"
{...props}
>
<path d="M21.6 11.725c-.09-1.08-.82-2-1.79-2.48l-12.4-6.21a2.57 2.57 0 0 0-3.09.58c-.72.79-.83 1.96-.39 2.93l2.26 5.03c.12.26.12.56 0 .82l-2.25 5.03c-.46 1.03-.31 2.27.5 3.06.5.49 1.15.74 1.81.74.4 0 .8-.09 1.17-.28l12.54-6.27c1.1-.55 1.75-1.7 1.65-2.95h-.01Zm-2.54 1.16-12.54 6.27c-.34.17-.59-.02-.68-.1-.09-.09-.29-.33-.13-.68l2.41-5.38h3.76c.55 0 1-.45 1-1s-.45-1-1-1H8.12l-2.41-5.38c-.16-.35.04-.59.13-.68.06-.06.21-.17.41-.17.08 0 .18.02.28.07l12.55 6.27c.35.17.55.51.55.89 0 .39-.21.72-.55.89h-.02Z" />
</svg>
);
export default SvgPaperplane;
16 changes: 16 additions & 0 deletions packages/spindle-ui/src/Icon/PaperplaneFill.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const SvgPaperplaneFill = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="currentColor"
viewBox="0 0 24 24"
role="img"
{...props}
>
<path d="m19.75 13.865-13.13 6.57c-1.4.7-2.92-.75-2.27-2.19l2.24-5c.1-.22.31-.35.55-.35h3.73c.49 0 .9-.4.9-.9s-.41-.9-.9-.9H7.14c-.24 0-.45-.14-.55-.35l-2.24-5c-.65-1.44.87-2.89 2.27-2.19l13.13 6.57c1.55.77 1.55 2.97 0 3.74Z" />
</svg>
);
export default SvgPaperplaneFill;
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,8 @@ export { default as Openblank } from './Openblank';
export { default as OpenblankFill } from './OpenblankFill';
export { default as Ownd } from './Ownd';
export { default as PaletteFill } from './PaletteFill';
export { default as Paperplane } from './Paperplane';
export { default as PaperplaneFill } from './PaperplaneFill';
export { default as Pause } from './Pause';
export { default as PauseBold } from './PauseBold';
export { default as Pawprint } from './Pawprint';
Expand Down

0 comments on commit c9a21ca

Please sign in to comment.