diff options
| author | Kit Langton <[email protected]> | 2026-04-15 21:56:23 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-15 21:56:23 -0400 |
| commit | d6b14e24678db678163c281257322c5a9bf0e6fa (patch) | |
| tree | f3681988691b203ed5d766f47c9efb5af4f48beb /packages/console/app/src/component | |
| parent | 66257663509bc12bb208c4c65f73c45206106aae (diff) | |
| download | opencode-d6b14e24678db678163c281257322c5a9bf0e6fa.tar.gz opencode-d6b14e24678db678163c281257322c5a9bf0e6fa.zip | |
fix: prefix 32 unused parameters with underscore (#22694)
Diffstat (limited to 'packages/console/app/src/component')
| -rw-r--r-- | packages/console/app/src/component/icon.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/console/app/src/component/icon.tsx b/packages/console/app/src/component/icon.tsx index 4627c0084..da2e87ef4 100644 --- a/packages/console/app/src/component/icon.tsx +++ b/packages/console/app/src/component/icon.tsx @@ -1,6 +1,6 @@ import { JSX } from "solid-js" -export function IconZen(props: JSX.SvgSVGAttributes<SVGSVGElement>) { +export function IconZen(_props: JSX.SvgSVGAttributes<SVGSVGElement>) { return ( <svg width="84" height="30" viewBox="0 0 84 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M24 24H6V18H18V12H24V24ZM6 18H0V12H6V18Z" fill="currentColor" fill-opacity="0.2" /> @@ -13,7 +13,7 @@ export function IconZen(props: JSX.SvgSVGAttributes<SVGSVGElement>) { ) } -export function IconGo(props: JSX.SvgSVGAttributes<SVGSVGElement>) { +export function IconGo(_props: JSX.SvgSVGAttributes<SVGSVGElement>) { return ( <svg width="54" height="30" viewBox="0 0 54 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M24 30H0V0H24V6H6V24H18V18H12V12H24V30Z" fill="currentColor" /> |
