Fix some typos

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-01-10 13:46:42 +01:00
parent 7304f28acc
commit b2faa1406b
25 changed files with 112 additions and 112 deletions

View File

@ -1,5 +1,5 @@
/**
* Icon: abstact component to render SVG icons.
* Icon: abstract component to render SVG icons.
* @module soapbox/components/icon
*/

View File

@ -9,7 +9,7 @@ interface IIconButton extends React.ButtonHTMLAttributes<HTMLButtonElement> {
iconClassName?: string;
/** URL to the svg icon. */
src: string;
/** Text to display next ot the button. */
/** Text to display next to the button. */
text?: string;
/** Predefined styles to display for the button. */
theme?: 'seamless' | 'outlined' | 'secondary' | 'transparent' | 'dark';