~bigbes/lethe

ref: 20e5301a02603e4b525a946a0b077aab86f94f99 lethe/web/src/primitives/Sub.tsx -rw-r--r-- 314 bytes
20e5301a — Eugene Blikh docs: plan lethe collector implementation 24 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react'

interface SubProps {
  children: React.ReactNode
  right?: React.ReactNode
}

export function Sub({ children, right }: SubProps): React.JSX.Element {
  return (
    <div className="sub">
      {children}
      {right != null && <div className="sub-right">{right}</div>}
    </div>
  )
}