"use client"; import React from "react"; import type { CSSProperties } from "react"; import { useIconSize } from "../contexts/IconSizeContext"; type Props = { size?: number; color?: string; style?: CSSProperties; }; export default function UserLink({ color = "currentcolor", size, ...props }: Props) { const iconSize = useIconSize(); const height = size || iconSize.size; const width = size || iconSize.size; const style = { color, ...props.style }; return ( ); }