Skip to content

Commit

Permalink
Rename interface name (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bunlong committed Jan 29, 2022
1 parent 2cabe6e commit 642cbd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Remove.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down

0 comments on commit 642cbd6

Please sign in to comment.