import React from 'react'
import SealGenarator from 'seal-genarator'
import 'seal-genarator/build/index.css'
const CreateSeal = () => {
return (
<SealGenarator
companyName='xyz imports'
companyRegNumber='49039230495'
color='green'
fontFamily='cursive'
innerTextStyle={{ fontSize: '12px' }}
size={250}
/>
)
}
export default CreateSeal| Name | Type |
|---|---|
| companyName | string |
| companyRegNumber | string |
| color | string |
| fontFamily | string |
| innerTextStyle | styles object |
| size | number |
| Function | Description |
|---|---|
| setCompanyName | To set the company name |
| setCompanyRegNumber | To set the company registration number |
| setColor | To set the seal color |
| setFontFamily | To set the seal font family |
| Command | Description |
|---|---|
| npm run start | Start dev server |
| npm run build | Build for release |
| npm run demo | Build for deploy |
| npm test | Run unit and screenshot tests |
