data.d.ts 236 B

12345678910
  1. declare namespace NavBar {
  2. export type NavBarProps = {
  3. title: string,
  4. fontSize?: number,
  5. color?: string,
  6. background?: string,
  7. icon?: React.ReactElement,
  8. fixed: boolean
  9. }
  10. }