10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
/**
|
|
* Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
|
|
*/
|
|
import * as styled from 'styled-components';
|
|
|
|
export const CopyButtonContainer = styled.default.div`
|
|
display: flex;
|
|
align-items: center;
|
|
`;
|