-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from route06inc/handling-error-on-web-search
Handling error on web search
- Loading branch information
Showing
5 changed files
with
72 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
app/(playground)/p/[agentId]/beta-proto/components/icons/circle-x.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type { FC, SVGProps } from "react"; | ||
|
||
export const CircleXIcon: FC<SVGProps<SVGSVGElement>> = (props) => ( | ||
<svg | ||
width="20" | ||
height="21" | ||
viewBox="0 0 20 21" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<title>Circle X Icon</title> | ||
<g clipPath="url(#clip0_6417_28957)"> | ||
<path d="M9.78182 0.5C4.38182 0.5 0 4.88182 0 10.2818C0 15.6818 4.38182 20.0636 9.78182 20.0636C15.1818 20.0636 19.5636 15.6818 19.5636 10.2818C19.5636 4.88182 15.1818 0.5 9.78182 0.5ZM14.0545 13.2636C14.4091 13.6182 14.4091 14.1909 14.0545 14.5455C13.8727 14.7273 13.6455 14.8091 13.4091 14.8091C13.1727 14.8091 12.9455 14.7182 12.7636 14.5455L9.77273 11.5545L6.78182 14.5455C6.6 14.7273 6.37273 14.8091 6.13636 14.8091C5.9 14.8091 5.67273 14.7182 5.49091 14.5455C5.13636 14.1909 5.13636 13.6182 5.49091 13.2636L8.48182 10.2727L5.49091 7.28182C5.13636 6.92727 5.13636 6.35455 5.49091 6C5.84545 5.64545 6.41818 5.64545 6.77273 6L9.76364 8.99091L12.7545 6C13.1091 5.64545 13.6818 5.64545 14.0364 6C14.3909 6.35455 14.3909 6.92727 14.0364 7.28182L11.0455 10.2727L14.0364 13.2636H14.0545Z" /> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_6417_28957"> | ||
<rect width="20" height="20" transform="translate(0 0.5)" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters