import * as React from "react" type LinkedInIconProps = React.ComponentProps<"svg"> & { title?: string } export function LinkedInIcon({ title, ...props }: LinkedInIconProps) { const ariaHidden = title ? undefined : true return ( {title ? {title} : null} ) }