mirror of
https://github.com/whyour/qinglong.git
synced 2025-12-13 07:25:05 +08:00
25 lines
469 B
TypeScript
25 lines
469 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const PasteIcon = styled.div`
|
|
position: absolute;
|
|
width: 15px;
|
|
height: 15px;
|
|
color: #3370ff;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
`;
|
|
|
|
export const Wrap = styled.div`
|
|
position: relative;
|
|
width: 6px;
|
|
height: 6px;
|
|
background-color: rgb(143, 149, 158);
|
|
color: #fff;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
`;
|