/** * Copyright (c) TonTech. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import type { FC, ComponentProps } from 'react'; import clsx from 'clsx'; import styles from './info-block.module.css'; import { Skeleton } from '../skeleton'; import type { SkeletonProps } from '../skeleton'; const Container: FC> = ({ className, ...props }) => { return
; }; const Row: FC> = ({ className, ...props }) => { return
; }; const Label: FC> = ({ className, ...props }) => { return ; }; const Value: FC> = ({ className, ...props }) => { return ; }; const LabelSkeleton: FC = ({ width = 64, height = '1lh', ...props }) => { return ; }; const ValueSkeleton: FC = ({ width = 80, height = '1lh', ...props }) => { return ; }; export const InfoBlock = { Container, Row, Label, Value, LabelSkeleton, ValueSkeleton, };