Files
personal-support-ticket-system/frontend/src/components/icons/plus.tsx
kokopi 16bc00632d init
2026-03-08 19:40:53 +09:00

8 lines
278 B
TypeScript

import type { IconProps } from "../../lib/types.ts";
export const PlusIcon = ({ className }: IconProps) => (
<svg className={className} viewBox="0 0 14 14" fill="none">
<path d="M7 1v12M1 7h12" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
</svg>
);