@dust-tt/sparkle 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/index.d.ts +2 -0
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/index.js +2 -0
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/index.js.map +1 -1
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/logo/Logo.d.ts +4 -0
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/logo/Logo.js +12 -0
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/logo/Logo.js.map +1 -0
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/logo/index.d.ts +1 -0
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/logo/index.js +2 -0
- package/.rollup.cache/home/spolu/code/dust/sparkle/dist/logo/index.js.map +1 -0
- package/dist/cjs/index.d.ts +2 -0
- package/dist/cjs/index.js +10 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/logo/Logo.d.ts +4 -0
- package/dist/cjs/logo/index.d.ts +1 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.js +10 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/logo/Logo.d.ts +4 -0
- package/dist/esm/logo/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +3 -0
- package/src/logo/Logo.tsx +31 -0
- package/src/logo/index.ts +1 -0
- package/src/logo/src/logo.svg +9 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Logo } from "./Logo";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgLogo = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width="1em"
|
|
7
|
+
height="1em"
|
|
8
|
+
fill="none"
|
|
9
|
+
viewBox="0 0 64 16"
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<path fill="#FCD34D" d="M56 8h-8v8h8V8Z" />
|
|
13
|
+
<path fill="#6EE7B7" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Z" />
|
|
14
|
+
<path fill="#F9A8D4" d="M24 16a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z" />
|
|
15
|
+
<path fill="#10B981" d="M8 0H0v16h8V0Z" />
|
|
16
|
+
<path fill="#F87171" d="M32 0H16v8h16V0Z" />
|
|
17
|
+
<path
|
|
18
|
+
fill="#3B82F6"
|
|
19
|
+
fillRule="evenodd"
|
|
20
|
+
d="M40 8a4 4 0 0 1 0-8h24v8H40Z"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
fill="#7DD3FC"
|
|
25
|
+
fillRule="evenodd"
|
|
26
|
+
d="M32 16V8h8a4 4 0 0 1 0 8h-8Z"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
export default SvgLogo;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Logo } from "./Logo";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="64" height="16" viewBox="0 0 64 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M56 8H48V16H56V8Z" fill="#FCD34D"/>
|
|
3
|
+
<path d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z" fill="#6EE7B7"/>
|
|
4
|
+
<path d="M24 16C28.4183 16 32 12.4183 32 8C32 3.58172 28.4183 0 24 0C19.5817 0 16 3.58172 16 8C16 12.4183 19.5817 16 24 16Z" fill="#F9A8D4"/>
|
|
5
|
+
<path d="M8 0H0V16H8V0Z" fill="#10B981"/>
|
|
6
|
+
<path d="M32 0H16V8H32V0Z" fill="#F87171"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M40 8C37.7909 8 36 6.20914 36 4C36 1.79086 37.7909 0 40 0H64V8H40Z" fill="#3B82F6"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M32 16V8H40C42.2091 8 44 9.79086 44 12C44 14.2091 42.2091 16 40 16H32Z" fill="#7DD3FC"/>
|
|
9
|
+
</svg>
|