import type { ComponentPropsWithRef } from "react" /** * Render the "Line" SVG icon. * * @param props - Props spread onto the root `` element (e.g., `className`, `style`, `ref`, event handlers) to customize the icon. * @returns The SVG element for the Line icon. */ export function Line(props: ComponentPropsWithRef<"svg">) { return ( ) }