chore: use export function instead of React.FC

This commit is contained in:
knownotunknown
2024-02-17 12:09:01 -06:00
committed by doprz
parent 56306ab944
commit 64fa12b10c
2 changed files with 43 additions and 35 deletions

View File

@@ -1,8 +1,7 @@
import React from 'react';
import Text from '../Text/Text';
export const flags = ["WR", "QR", "GC", "CD", "E", "II"]
export const flags = ['WR', 'QR', 'GC', 'CD', 'E', 'II'];
interface Props {
label: string;
@@ -12,15 +11,16 @@ interface Props {
* A reusable chip component that follows the design system of the extension.
* @returns
*/
export function Chip({
label
}: React.PropsWithChildren<Props>): JSX.Element {
export function Chip({ label }: React.PropsWithChildren<Props>): JSX.Element {
return (
<Text as = 'div' variant = 'h4'
className="min-w-5 inline-flex items-center justify-center gap-2.5 rounded-lg px-1 py-0.5"
style={{
backgroundColor: "#FFD600"
}}>
<Text
as='div'
variant='h4'
className='min-w-5 inline-flex items-center justify-center gap-2.5 rounded-lg px-1 py-0.5'
style={{
backgroundColor: '#FFD600',
}}
>
{label}
</Text>
);