Skip to content

Basic Seal

The simplest SealKit example: a personal mitomein seal.

Example

tsx
import { SealCanvas } from '@luohuax/seal-kit'

function App() {
  return <SealCanvas preset="mitomein" text="山田太郎" />
}

Result

This renders a circular red seal with the name 山田太郎 arranged vertically.

Basic mitomein

Explanation

  • preset="mitomein" selects the personal acknowledgement seal template.
  • text="山田太郎" provides the name to render.
  • All other visual properties use the preset defaults.

Try It Yourself

You can change the name or try other presets:

tsx
<SealCanvas preset="mitomein" text="鈴木花子" />
<SealCanvas preset="tenkoku" text="雅印" />

Released under the MIT License.