Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function blueCircleRenderer (htmlAttribs, children, convertedCSSStyles, passProps) {
// This helper allows you to compose the final style of your renderers easily.
// It will return a style object based on :
// - the default styles for this HTML tag (if any)
// - your "htmlStyles" prop for this tag
// - the conversion of the "style" attribute from CSS to RN
// - your "classesStyles" prop for the classes of the rendered component
// - any "additionalyStyles" you provide in the options object
const style = _constructStyles({
tagName: 'bluecircle',
htmlAttribs,
passProps,
styleSet: 'VIEW',
baseFontSize: 14
});
return (