Skip to content

Commit

Permalink
missing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
dani-moreno authored and josepjaume committed Jan 16, 2025
1 parent 5f2f12f commit c83aeb5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions assets/icons/app/crossed-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/icons/app/pause-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions lib/icons/app/CrossedCircle.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { SVGProps } from "react";
import { Ref, forwardRef } from "react";
const SvgCrossedCircle = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" ref={ref} {...props}><path fill="currentColor" fillRule="evenodd" d="M3.35001 12C3.35001 7.22273 7.22274 3.35 12 3.35C16.7773 3.35 20.65 7.22273 20.65 12C20.65 16.7773 16.7773 20.65 12 20.65C7.22274 20.65 3.35001 16.7773 3.35001 12ZM9.45963 8.54038C9.20578 8.28654 8.79423 8.28654 8.54039 8.54038C8.28655 8.79422 8.28655 9.20578 8.54039 9.45962L11.0808 12L8.54039 14.5404C8.28655 14.7942 8.28655 15.2058 8.54039 15.4596C8.79423 15.7135 9.20578 15.7135 9.45963 15.4596L12 12.9192L14.5404 15.4596C14.7942 15.7135 15.2058 15.7135 15.4596 15.4596C15.7135 15.2058 15.7135 14.7942 15.4596 14.5404L12.9192 12L15.4596 9.45962C15.7135 9.20578 15.7135 8.79422 15.4596 8.54038C15.2058 8.28654 14.7942 8.28654 14.5404 8.54038L12 11.0808L9.45963 8.54038Z" clipRule="evenodd" vectorEffect="non-scaling-stroke" /></svg>;
const ForwardRef = forwardRef(SvgCrossedCircle);
export default ForwardRef;
5 changes: 5 additions & 0 deletions lib/icons/app/PauseCircle.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { SVGProps } from "react";
import { Ref, forwardRef } from "react";
const SvgPauseCircle = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" ref={ref} {...props}><path fill="currentColor" fillRule="evenodd" d="M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM10 8.35C10.359 8.35 10.65 8.64101 10.65 9V15C10.65 15.359 10.359 15.65 10 15.65C9.64102 15.65 9.35001 15.359 9.35001 15V9C9.35001 8.64101 9.64102 8.35 10 8.35ZM14.65 9C14.65 8.64101 14.359 8.35 14 8.35C13.641 8.35 13.35 8.64101 13.35 9V15C13.35 15.359 13.641 15.65 14 15.65C14.359 15.65 14.65 15.359 14.65 15V9Z" clipRule="evenodd" vectorEffect="non-scaling-stroke" /></svg>;
const ForwardRef = forwardRef(SvgPauseCircle);
export default ForwardRef;
2 changes: 2 additions & 0 deletions lib/icons/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export { default as Coffee } from './Coffee'
export { default as Comment } from './Comment'
export { default as CreditCard } from './CreditCard'
export { default as Cross } from './Cross'
export { default as CrossedCircle } from './CrossedCircle'
export { default as Delete } from './Delete'
export { default as Desktop } from './Desktop'
export { default as DollarBill } from './DollarBill'
Expand Down Expand Up @@ -76,6 +77,7 @@ export { default as MoneyBag } from './MoneyBag'
export { default as Money } from './Money'
export { default as Office } from './Office'
export { default as PalmTree } from './PalmTree'
export { default as PauseCircle } from './PauseCircle'
export { default as Pencil } from './Pencil'
export { default as People } from './People'
export { default as Person } from './Person'
Expand Down

0 comments on commit c83aeb5

Please sign in to comment.