mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-01 18:20:28 +00:00
Add project creation page
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,18 @@
|
|||||||
|
import styled from 'styled-components';
|
||||||
|
|
||||||
|
type WrapperProps = {
|
||||||
|
color?: 'client' | 'productOwner' | 'developer' | 'admin';
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Wrapper = styled.div<WrapperProps>`
|
||||||
|
.carousel-arrow {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
align-self: center;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
stroke: ${({ theme, color }) => theme.colors[color || 'client'].main};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
@@ -18,6 +18,7 @@ import AddTemplate from './AddTemplate';
|
|||||||
import CategorySettings from './CategorySettings';
|
import CategorySettings from './CategorySettings';
|
||||||
import FeatureSettings from './FeatureSettings';
|
import FeatureSettings from './FeatureSettings';
|
||||||
import TemplateSettings from './TemplateSettings';
|
import TemplateSettings from './TemplateSettings';
|
||||||
|
import AddProject from './AddProject';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
Login,
|
Login,
|
||||||
@@ -40,4 +41,5 @@ export {
|
|||||||
CategorySettings,
|
CategorySettings,
|
||||||
FeatureSettings,
|
FeatureSettings,
|
||||||
TemplateSettings,
|
TemplateSettings,
|
||||||
|
AddProject,
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user