use colons in interface

This commit is contained in:
John Rees 2021-06-06 11:04:09 +01:00
parent 3b34e2de4e
commit 0eb3a74951
No known key found for this signature in database
GPG Key ID: 4124863B5E4EE329
1 changed files with 5 additions and 5 deletions

View File

@ -5,11 +5,11 @@ import { formatUSD } from '@oyster/common'
import './index.less';
interface IAmountLabel {
amount: number | string,
displayUSD?: boolean,
title?: string,
style?: object,
containerStyle?: object,
amount: number | string;
displayUSD?: boolean;
title?: string;
style?: object;
containerStyle?: object;
}
export const AmountLabel = (props: IAmountLabel) => {