From 642cbd63c5c26534358393b73bca126db8d5e26d Mon Sep 17 00:00:00 2001 From: Bunlong Date: Sat, 29 Jan 2022 17:38:03 +0700 Subject: [PATCH] Rename interface name (#121) --- src/Remove.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Remove.tsx b/src/Remove.tsx index 93e369e..6d2c640 100644 --- a/src/Remove.tsx +++ b/src/Remove.tsx @@ -1,12 +1,12 @@ import React from 'react'; -export interface Props { +export interface IRemove { color?: string; width?: number; height?: number; } -export default function Remove({ color, width = 23, height = 23 }: Props) { +export default function Remove({ color, width = 23, height = 23 }: IRemove) { return (