5 lines
91 B
TypeScript
5 lines
91 B
TypeScript
export interface WidthHeightProps {
|
|
width: string | number;
|
|
height: string | number;
|
|
}
|