mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
12 lines
331 B
TypeScript
12 lines
331 B
TypeScript
import React from 'react';
|
|
|
|
// @ts-ignore
|
|
export function SmallInfoField({icon: IconComponent, message, ...props}) {
|
|
return (
|
|
<div {...props}>
|
|
<small className="flex flex-row items-center gap-1">
|
|
<IconComponent weight="fill" size={14}/> {message}
|
|
</small>
|
|
</div>
|
|
);
|
|
} |