UNPKG
ahv-product-card
Version:
latest (1.0.0-rc)
1.0.0-rc
0.0.1
This is a test package in order to deploy to NPM.
alberturria/ahv-product-card
ahv-product-card
/
dist
/
components
/
ProductTitle.d.ts
9 lines
(8 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
export
interface
Props
{
className
?:
string
;
title
?:
string
;
activeClass
?:
string
;
style
?:
React
.
CSSProperties
; }
export
declare
const
ProductTitle
:
(
{ title, className, style }:
Props
) =>
JSX
.
Element
;