qinglong/src/pages/scenario/flowgram/components/node-adder/styles.tsx
2025-11-24 01:49:59 +08:00

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;
`;