@fto-consult/expo-ui
Version:
Bibliothèque de composants UI Expo,react-native
27 lines (25 loc) • 920 B
JavaScript
import React from 'react'
import Rect from "./Rect";
import ContentLoader from './Loader';
const ProfileCard = props => {
return (
<ContentLoader
speed={1}
width={450}
height={400}
viewBox="0 0 450 400"
{...props}
>
<Rect x="172" y="53" rx="0" ry="0" width="2" height="300" />
<Rect x="386" y="55" rx="0" ry="0" width="2" height="300" />
<Rect x="171" y="53" rx="0" ry="0" width="216" height="2" />
<Rect x="171" y="353" rx="0" ry="0" width="216" height="2" />
<circle cx="277" cy="147" r="44" />
<Rect x="174" y="53" rx="0" ry="0" width="216" height="41" />
<Rect x="198" y="207" rx="0" ry="0" width="160" height="9" />
<Rect x="231" y="236" rx="0" ry="0" width="92" height="9" />
<Rect x="206" y="324" rx="0" ry="0" width="146" height="51" />
</ContentLoader>
)
}
export default ProfileCard