import React from 'react'; import styled from 'styled-components'; const Svg = styled.svg``; type UnsavedBoardIconProps = { as?: React.ElementType; width?: number; height?: number; color?: string; }; export const UnsavedBoardIcon = ({ as, width = 12, height = 16, color = '#000', }: UnsavedBoardIconProps) => ( );