import { IconProps, defaultProps } from "./types"; export function Expand(props: IconProps) { const { size, strokeWidth, ...rest } = { ...defaultProps, ...props }; return ( ); }