mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
14 lines
421 B
TypeScript
14 lines
421 B
TypeScript
import type { ComponentPropsWithoutRef } from "react";
|
|
|
|
export function BoltIcon(props: ComponentPropsWithoutRef<"svg">) {
|
|
return (
|
|
<svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M4.5 11.5 10 2v5.5a1 1 0 0 0 1 1h4.5L10 18v-5.5a1 1 0 0 0-1-1H4.5Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|