Compare commits
2 Commits
fb0561e3a2
...
3e685eaf8d
Author | SHA1 | Date |
---|---|---|
|
3e685eaf8d | |
|
26b4a964ca |
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@intended/intended-ui",
|
||||
"version": "0.1.21",
|
||||
"version": "0.1.22",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@intended/intended-ui",
|
||||
"version": "0.1.21",
|
||||
"version": "0.1.22",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"polished": "^4.1.3",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "@intended/intended-ui",
|
||||
"description": "Storybook UI library for Intended Link",
|
||||
"license": "MIT",
|
||||
"version": "0.1.21",
|
||||
"version": "0.1.22",
|
||||
"private": false,
|
||||
"main": "dist/index.js",
|
||||
"repository": "https://git.silentsilas.com/Intended/attendant.git",
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
import React from "react";
|
||||
import { rgba } from "polished";
|
||||
|
||||
import CSS from "csstype";
|
||||
import { color, opacity } from "../shared/styles";
|
||||
|
||||
const SplashIconHeader = () => {
|
||||
export interface SplashIconHeaderProps {
|
||||
style?: CSS.Properties;
|
||||
}
|
||||
|
||||
const SplashIconHeader = ({ style }: SplashIconHeaderProps) => {
|
||||
const bgCircleColor = rgba(color.white, opacity.light);
|
||||
|
||||
const dotColor = "#ffffff";
|
||||
|
@ -13,7 +17,7 @@ const SplashIconHeader = () => {
|
|||
const r = "60";
|
||||
|
||||
return (
|
||||
<svg width="44rem" viewBox="0 0 440 120">
|
||||
<svg width="44rem" viewBox="0 0 440 120" style={style}>
|
||||
<circle r={r} cx="60" cy={cy} fill={bgCircleColor} />
|
||||
<svg width="51" height="60" viewBox="0 0 51 60" fill="none" x="35" y="30">
|
||||
<path
|
||||
|
|
Loading…
Reference in New Issue