/** * The `Size` type. * * This type represents the size of a component. * * @prop width - The width of the component. * @prop height - The height of the component. * @interface */ type Size = { width: number; height: number; }; export default Size;