bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/annotations/poll/styles.js
2021-11-02 16:35:54 +00:00

19 lines
363 B
JavaScript

import styled from 'styled-components';
import { pollAnnotationGray } from '/imports/ui/stylesheets/styled-components/palette';
const OutlineText = styled.text`
stroke: ${pollAnnotationGray};
stroke-width: .5;
`;
const OutlineTSpan = styled.tspan`
stroke: ${pollAnnotationGray};
stroke-width: .5;
`;
export default {
OutlineText,
OutlineTSpan,
};