rusty_paseto 0.10.0

A type-driven, ergonomic alternative to JWT for secure stateless PASETO tokens.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export function Logo(props: React.ComponentPropsWithoutRef<'svg'>) {
  return (
    <svg viewBox="0 0 140 24" aria-hidden="true" {...props}>
      <text
        x="0"
        y="18"
        className="fill-accent-500 dark:fill-accent-400"
        style={{
          fontFamily: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace',
          fontSize: '18px',
          fontWeight: 700,
        }}
      >
        rusty_paseto
      </text>
    </svg>
  )
}