Skip to content

Commit

Permalink
use emotion
Browse files Browse the repository at this point in the history
  • Loading branch information
softmarshmallow committed Nov 7, 2023
1 parent fccce4f commit 2c84d43
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/console-ui/divider/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { styled } from "linaria/react";
import styled from "@emotion/styled";

export function Divider({
width,
Expand Down
2 changes: 1 addition & 1 deletion packages/console-ui/form-field/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { styled } from "linaria/react";
import styled from "@emotion/styled";

export const FormFieldLabel = styled.span`
color: black;
Expand Down
2 changes: 1 addition & 1 deletion packages/console-ui/text-field/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { styled } from "linaria/react";
import styled from "@emotion/styled";

export function TextField({
value,
Expand Down
2 changes: 1 addition & 1 deletion packages/console-ui/text-form-field/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { styled } from "linaria/react";
import styled from "@emotion/styled";
import { TextField } from "../text-field";
import {
FormFieldLabel,
Expand Down

0 comments on commit 2c84d43

Please sign in to comment.