mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 12:27:44 +00:00
22 lines
636 B
TypeScript
22 lines
636 B
TypeScript
import { Plus } from "lucide-react";
|
|
|
|
const SectionSvg = ({ crossesOffset }: { crossesOffset: string }) => {
|
|
return (
|
|
<>
|
|
<Plus
|
|
className={`hidden absolute -top-[0.3125rem] h-6 w-6 ${
|
|
crossesOffset && crossesOffset
|
|
} pointer-events-none lg:block lg:left-[3.275rem] text-neutral-300 dark:text-neutral-600 translate-y-[.5px]`}
|
|
/>
|
|
|
|
<Plus
|
|
className={`hidden absolute -top-[0.3125rem] h-6 w-6 right-[1.4625rem] ${
|
|
crossesOffset && crossesOffset
|
|
} pointer-events-none lg:block lg:right-[2.7750rem] text-neutral-300 dark:text-neutral-600 translate-y-[.5px]`}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SectionSvg;
|