We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's create a loading indicator mock shape
It should fall under the Rich Components category
Rich Components
Rich Components >> Loading Indicator
Here some rough code (IMPORTANT use the Standard fonts and spacing, check the input component, and ask @deletidev about it).
SVG code (rough) THIS IS NOT VALID AS IS, IS JUST AN IDEA
<svg width="200" height="100" viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <!-- Círculos --> <circle cx="40" cy="40" r="15" fill="#666" stroke="#000" stroke-width="2"/> <circle cx="80" cy="40" r="15" fill="#888" stroke="#000" stroke-width="2"/> <circle cx="120" cy="40" r="15" fill="#aaa" stroke="#000" stroke-width="2"/> <circle cx="160" cy="40" r="15" fill="#ccc" stroke="#000" stroke-width="2"/> <!-- Texto --> <text x="100" y="85" font-family="Arial, sans-serif" font-size="14" fill="#000" text-anchor="middle">Loading...</text> </svg>
React Konva (rough)
import React from "react"; import { Stage, Layer, Circle, Text } from "react-konva"; const LoadIndicator: React.FC = () => { // Tonos de gris de oscuro a claro const colors = ["#666", "#888", "#aaa", "#ccc"]; return ( <Stage width={200} height={100}> <Layer> {/* Círculos */} {colors.map((color, index) => ( <Circle key={index} x={40 + index * 40} // Espaciado horizontal y={40} // Altura fija radius={15} fill={color} stroke="#000" strokeWidth={2} /> ))} {/* Texto "Loading..." */} <Text x={0} y={75} width={200} text="Loading..." fontSize={14} fontFamily="Arial" fill="#000" align="center" /> </Layer> </Stage> ); }; export default LoadIndicator;
The text was updated successfully, but these errors were encountered:
#675 Loading component created
141f5bd
Merge branch 'dev' into feature/#675-loading-indicator-component
9995545
Merge pull request #705 from Lemoncode/feature/#675-loading-indicator…
50f1378
…-component Feature/#675 loading indicator component
omarlm
Successfully merging a pull request may close this issue.
Let's create a loading indicator mock shape
It should fall under the
Rich Components
categoryRich Components >> Loading Indicator
Here some rough code (IMPORTANT use the Standard fonts and spacing, check the input component, and ask @deletidev about it).
SVG code (rough) THIS IS NOT VALID AS IS, IS JUST AN IDEA
React Konva (rough)
The text was updated successfully, but these errors were encountered: