UNPKG
azlan-ui-components-library
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Reusable UI components
azlan-ui-components-library
/
dist
/
components
/
Banner.d.ts
8 lines
(7 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
*
as
React
from
"react"
;
export
interface
BannerProps
{
title
:
string
;
heading
:
string
;
image
:
string
; }
export
declare
function
Banner
(
{ title, heading, image }:
BannerProps
):
React
.
JSX
.
Element
;