UNPKG
@hackplan/polaris
Version:
latest (4.1.9)
4.1.9
4.1.8
4.1.7
4.1.6
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
Shopify’s product component library
github.com/Shopify/polaris-react
Shopify/polaris-react
@hackplan/polaris
/
types
/
components
/
SkeletonThumbnail
/
SkeletonThumbnail.d.ts
11 lines
(10 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/// <reference types="react" />
export
declare
type
Size
=
'small'
|
'medium'
|
'large'
;
export
interface
Props
{
/** * Size of the thumbnail *
@default
'medium' */
size
?:
Size
; }
export
default
function
SkeletonThumbnail
(
{ size }:
Props
):
JSX
.
Element
;