diff --git a/frontend/src/components/Teams/CreateTeam/TeamName.tsx b/frontend/src/components/Teams/CreateTeam/TeamName.tsx
new file mode 100644
index 000000000..46ffbc11e
--- /dev/null
+++ b/frontend/src/components/Teams/CreateTeam/TeamName.tsx
@@ -0,0 +1,26 @@
+import Input from '../../Primitives/Input';
+import Text from '../../Primitives/Text';
+
+type Props = { teamName: string };
+
+const TeamName = ({ teamName }: Props) => {
+ return (
+ <>
+
+ Team Name
+
+
+
+ >
+ );
+};
+
+export default TeamName;
diff --git a/frontend/src/components/Teams/CreateTeam/TipBar.tsx b/frontend/src/components/Teams/CreateTeam/TipBar.tsx
new file mode 100644
index 000000000..c2dcc4478
--- /dev/null
+++ b/frontend/src/components/Teams/CreateTeam/TipBar.tsx
@@ -0,0 +1,51 @@
+import { styled } from 'styles/stitches/stitches.config';
+
+import Icon from 'components/icons/Icon';
+import Flex from 'components/Primitives/Flex';
+import Text from 'components/Primitives/Text';
+
+const TextWhite = styled(Text, { color: 'white', mt: '$24' });
+const LiWhite = styled('li', Text, { color: '$primary100', fontSize: '$14', lineHeight: '$20' });
+
+const CreateTeamTipBar = () => {
+ return (
+
+
+ Team Admin
+
+
+ You will be the team admin of this team. You can also choose other team admins later
+ on out of your team members.
+
+
+
+ Stakeholders
+
+
+ If you select the role stakeholder, this person will not be included in
+ sub-team retros later on when you create a SPLIT retrospective.
+
+
+ );
+};
+
+export default CreateTeamTipBar;
diff --git a/frontend/src/components/icons/Sprite.tsx b/frontend/src/components/icons/Sprite.tsx
index d4fb107f2..e1cd380ab 100644
--- a/frontend/src/components/icons/Sprite.tsx
+++ b/frontend/src/components/icons/Sprite.tsx
@@ -1,3 +1,5 @@
+/* eslint react/no-unknown-property: 0 */
+
const Sprite = () => (