Skip to content

Date Stamp

A date stamp (日付印) combines a date with labels such as 受領 (received) or 確認 (confirmed).

Example

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

function App() {
  return (
    <SealCanvas
      preset="dateStamp"
      text="受領"
      dateStamp={{
        year: 2026,
        month: 7,
        day: 9,
        topText: '令和',
        bottomText: '確認'
      }}
    />
  )
}

Result

This renders a rectangular date stamp for the year Reiwa, with month 7 and day 9.

Date stamp

Date Stamp Fields

FieldTypeDescription
yearstring | numberYear value
monthstring | numberMonth value
daystring | numberDay value
topTextstringText displayed above the date
bottomTextstringText displayed below the date

Common Labels

  • 受領 — received
  • 確認 — confirmed
  • 検収 — inspected and accepted
  • 承認 — approved

Released under the MIT License.